Dev2.Core.Tests.FileSystemQueryTest.FileSystemQuery_Constructor_NullShareCollectionFactory_ThrowsException C# (CSharp) Method

FileSystemQuery_Constructor_NullShareCollectionFactory_ThrowsException() private method

        public void FileSystemQuery_Constructor_NullShareCollectionFactory_ThrowsException()
        {
            //------------Setup for test--------------------------
            //------------Execute Test---------------------------
            // ReSharper disable ObjectCreationAsStatement
            new FileSystemQuery(new DirectoryWrapper(), new DirectoryEntryFactory(), null);
            // ReSharper restore ObjectCreationAsStatement
            //------------Assert Results-------------------------
        }
FileSystemQueryTest