Ejemplo n.º 1
0
            public static void RunAllTests()
            {
                var fixture = new AreUniquelyEqualTest();
                var tests   = from method in fixture.GetType().GetMethods()
                              where  method.Name.StartsWith("AreUniquelyEqual")
                              select method;

                foreach (var method in tests)
                {
                    method.Invoke(fixture, null);
                }
            }
Ejemplo n.º 2
0
 static void Main(string[] args)
 {
     AreUniquelyEqualTest.RunAllTests();
 }