Cosmos/Users/Matthijs/Testing/ReflectionToEcmaCil.Tests/SimpleMethodsTest.cs

18 lines
390 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
namespace ReflectionToEcmaCil.Tests
{
[TestFixture]
public class SimpleMethodsTestsTest : BaseTest
{
[Test]
public void DoTest()
{
AssertCompilationSame("SimpleMethodsTests", typeof(SimpleMethodsTest.Program));
}
}
}