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

FileSystemQuery_Constructor_NullDirectory_ThrowsException() private method

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