Browse Source

Remove unused parameter from RoundtripAssembly.RunWithOutput

pull/728/head
Siegfried Pammer 10 years ago
parent
commit
21aaa5efbe
  1. 4
      ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

4
ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

@ -48,7 +48,7 @@ namespace ICSharpCode.Decompiler.Tests
public void Random_Tests_TestCases() public void Random_Tests_TestCases()
{ {
try { try {
RunWithOutput("Random Tests\\TestCases", "TestCase-1.exe", "TestCase-1.out"); RunWithOutput("Random Tests\\TestCases", "TestCase-1.exe");
} catch (CompilationFailedException ex) { } catch (CompilationFailedException ex) {
Assert.Ignore(ex.Message); Assert.Ignore(ex.Message);
} }
@ -59,7 +59,7 @@ namespace ICSharpCode.Decompiler.Tests
RunInternal(dir, fileToRoundtrip, () => RunTest(Path.Combine(testDir, dir) + "-output", fileToTest)); RunInternal(dir, fileToRoundtrip, () => RunTest(Path.Combine(testDir, dir) + "-output", fileToTest));
} }
void RunWithOutput(string dir, string fileToRoundtrip, string outputFile) void RunWithOutput(string dir, string fileToRoundtrip)
{ {
string inputDir = Path.Combine(testDir, dir); string inputDir = Path.Combine(testDir, dir);
string outputDir = inputDir + "-output"; string outputDir = inputDir + "-output";

Loading…
Cancel
Save