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

FileSystemQuery_GetSharesInformationFromSpecifiedServer_NoShares_ExpectEmpty() private method

        public void FileSystemQuery_GetSharesInformationFromSpecifiedServer_NoShares_ExpectEmpty()
        {
            //------------Setup for test--------------------------
            var query = GetFileSystemQuery(false);
            var output = new List<string>();

            query.GetSharesInformationFromSpecifiedServer(@"\\bob", output);
            //------------Assert Results-------------------------

            Assert.AreEqual(output.Count, 0);
        }
FileSystemQueryTest