Example #1
0
 public void BasicTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #2
0
 public void VirtualMethodTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #3
0
 protected virtual LinkedTestCaseResult Run(TestCase testCase, out TestRunner runner)
 {
     runner = new TestRunner(new ObjectFactory());
     return(runner.Run(testCase));
 }
Example #4
0
 public void InheritanceComplexTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #5
0
 public void CommandLineTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #6
0
 public void LibrariesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #7
0
 public void InheritanceAbstractClassTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #8
0
 public void InteropTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #9
0
 public void ReferencesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #10
0
 public void StaticsTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #11
0
 public void CoreLinkTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #12
0
 public void GenericsTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #13
0
 public void AttributesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #14
0
 public void XmlTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #15
0
 public void PreserveDependenciesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #16
0
 public void ResourcesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #17
0
 public void SymbolsTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #18
0
 public void TypeForwardingTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #19
0
 public void InheritanceInterfaceTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #20
0
 public void TestFrameworkTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #21
0
 public void InheritanceVirtualMethodsTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #22
0
 public void ReflectionTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #23
0
 public void BCLFeaturesTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #24
0
        protected LinkedTestCaseResult Run(TestCase testCase)
        {
            TestRunner runner;

            return(Run(testCase, out runner));
        }
Example #25
0
 public void AdvancedTests(TestCase testCase)
 {
     Run(testCase);
 }
Example #26
0
 protected LinkedTestCaseResult Run(TestCase testCase)
 {
     return(Run(testCase, out _));
 }