mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
823 B
30 lines
823 B
using NUnit.Framework; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Reflection; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.FSharpPatterns |
|
{ |
|
[TestFixture] |
|
public class FSharpPatternTests |
|
{ |
|
[Test] |
|
public void FSharpUsingDecompilesToCSharpUsing_Debug() |
|
{ |
|
var ilCode = TestHelpers.FuzzyReadResource("FSharpUsing.fs.Debug.il"); |
|
var csharpCode = TestHelpers.FuzzyReadResource("FSharpUsing.fs.Debug.cs"); |
|
TestHelpers.RunIL(ilCode, csharpCode); |
|
} |
|
|
|
[Test] |
|
public void FSharpUsingDecompilesToCSharpUsing_Release() |
|
{ |
|
var ilCode = TestHelpers.FuzzyReadResource("FSharpUsing.fs.Release.il"); |
|
var csharpCode = TestHelpers.FuzzyReadResource("FSharpUsing.fs.Release.cs"); |
|
TestHelpers.RunIL(ilCode, csharpCode); |
|
} |
|
} |
|
}
|
|
|