Example #1
0
        public void WillNotMirrorTwiceSame()
        {
            writeB("x");
            writeA("y");
            uab.Execute();
            uba.Execute();
            check(@"
S:Pending
S:Executing
copy a.txt to b.txt
S:Success
S:Pending
S:SuccessNotRun
");
        }
Example #2
0
        public void CanCopyNewer()
        {
            writeB("x");
            writeA("y");
            uab.Execute();
            check(@"
S:Pending
S:Executing
copy a.txt to b.txt
S:Success
");
        }