10 references to assert
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (10)
CommandLineTests.cs (10)
2677assert(@"/r:a=util.dll", @"util.dll", ["a"], false); 2678assert(@"/r:""a=util.dll""", @"a=util.dll", [], false); 2679assert(@"/r:""c:\users\app=exe\util.dll""", @"c:\users\app=exe\util.dll", [], false); 2680assert(@"/r:a=b=util.dll", @"b=util.dll", ["a"], false); 2681assert(@"/r:""a=b""=util.dll", @"a=b=util.dll", [], false); 2682assert(@"/r:\""a=b\""=util.dll", @"""a=b""=util.dll", [], false); 2683assert(@"/r:a""b=util.dll", "ab=util.dll", [], false); 2684assert(@"/r:a\""b=util.dll", @"a""b=util.dll", [], false); 2685assert(@"/r:""a""=""util.dll""", @"a=util.dll", [], false); 2686assert(@"/r:\""a\""=\""util.dll""", @"""a""=""util.dll", [], false);