BlinkSyncTests.MainTest.CopyingFiles_ExcludeFileFilter C# (CSharp) Method

CopyingFiles_ExcludeFileFilter() private method

private CopyingFiles_ExcludeFileFilter ( ) : void
return void
        public void CopyingFiles_ExcludeFileFilter()
        {
            inputParams.ExcludeHidden = false;

            // test copying files with an exclude file filter -- foo.jpg should not get copied
            inputParams.ExcludeFiles = SyncTools.FileSpecsToRegex(new string[] { "*.jpg", "*.wmv" });
            expectedResults.Set(3, 0, 0, 1, 2, 0, 0);
            TestOneCase(new string[] { @"foo" }, new string[] { @"foo.jpg", @"bar.txt", @"foo\foo1.png", @"foo\txt.foo" },
                null, null,
               inputParams, expectedResults);
        }