10 references to assert
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (10)
CommandLineTests.cs (10)
2691assert(@"/r:a=util.dll", @"util.dll", ["a"], false);
2692assert(@"/r:""a=util.dll""", @"a=util.dll", [], false);
2693assert(@"/r:""c:\users\app=exe\util.dll""", @"c:\users\app=exe\util.dll", [], false);
2694assert(@"/r:a=b=util.dll", @"b=util.dll", ["a"], false);
2695assert(@"/r:""a=b""=util.dll", @"a=b=util.dll", [], false);
2696assert(@"/r:\""a=b\""=util.dll", @"""a=b""=util.dll", [], false);
2697assert(@"/r:a""b=util.dll", "ab=util.dll", [], false);
2698assert(@"/r:a\""b=util.dll", @"a""b=util.dll", [], false);
2699assert(@"/r:""a""=""util.dll""", @"a=util.dll", [], false);
2700assert(@"/r:\""a\""=\""util.dll""", @"""a""=""util.dll", [], false);