Browse Source

Add test case for Newtonsoft.Json v9.0.1 (.NET 4.0)

pull/728/head
Siegfried Pammer 10 years ago
parent
commit
3a6b068b6b
  1. 10
      ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

10
ICSharpCode.Decompiler/Tests/RoundtripAssembly.cs

@ -40,6 +40,16 @@ namespace ICSharpCode.Decompiler.Tests @@ -40,6 +40,16 @@ namespace ICSharpCode.Decompiler.Tests
RunWithTest("Mono.Cecil-net45", "Mono.Cecil.dll", "Mono.Cecil.Tests.dll");
}
[Test]
public void NewtonsoftJson_net40()
{
try {
RunWithTest("Newtonsoft.Json-net40", "Newtonsoft.Json.dll", "Newtonsoft.Json.Tests.dll");
} catch (CompilationFailedException ex) {
Assert.Ignore(ex.Message);
}
}
[Test]
public void NRefactory_CSharp()
{

Loading…
Cancel
Save