BlinkSyncTests.MainTest.CopyingFiles_ExcludeFileFilterCase C# (CSharp) Method

CopyingFiles_ExcludeFileFilterCase() private method

private CopyingFiles_ExcludeFileFilterCase ( ) : void
return void
        public void CopyingFiles_ExcludeFileFilterCase()
        {
            // test copying files with another exclude file filter case
            inputParams.ExcludeFiles = SyncTools.FileSpecsToRegex(new string[] { "*foo*" });
            expectedResults.Set(1, 0, 0, 3, 2, 0, 0);
            TestOneCase(new string[] { @"foo" }, new string[] { @"foo.jpg", @"bar.txt", @"foo\foo1.png", @"foo\txt.foo" },
                null, null,
               inputParams, expectedResults);
        }