Browse Source

Add explicit conversion tests.

pull/728/head
Daniel Grunwald 9 years ago
parent
commit
0bde24aac0
  1. 30
      ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

30
ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

@ -56,6 +56,36 @@ namespace ICSharpCode.Decompiler.Tests @@ -56,6 +56,36 @@ namespace ICSharpCode.Decompiler.Tests
RunWithOutput("Random Tests\\TestCases", "ImplicitConversions.exe");
}
[Test]
public void Random_Tests_Implicit_Conversions_32()
{
try {
RunWithOutput("Random Tests\\TestCases", "ImplicitConversions_32.exe");
} catch (AssertionException ex) {
Assert.Ignore(ex.Message);
}
}
[Test]
public void Random_Tests_Explicit_Conversions()
{
try {
RunWithOutput("Random Tests\\TestCases", "ExplicitConversions.exe");
} catch (AssertionException ex) {
Assert.Ignore(ex.Message);
}
}
[Test]
public void Random_Tests_Explicit_Conversions_32()
{
try {
RunWithOutput("Random Tests\\TestCases", "ExplicitConversions_32.exe");
} catch (AssertionException ex) {
Assert.Ignore(ex.Message);
}
}
[Test]
public void Random_Tests_TestCases()
{

Loading…
Cancel
Save