Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.Tests/HeuristicLab.JsonInterface/ConvertableChecks.cs @ 17375

Last change on this file since 17375 was 17375, checked in by dpiringe, 4 years ago

#3026:

  • added new converter RegressionProblemDataConverter
  • added new unit test class (only a skeleton)
File size: 1.6 KB
Line 
1using System;
2using System.Text;
3using System.Collections.Generic;
4using Microsoft.VisualStudio.TestTools.UnitTesting;
5
6namespace HeuristicLab.Tests.HeuristicLab.JsonInterface {
7  [TestClass]
8  public class ConvertableChecks {
9    //TODO: implement tests for existing convertable classes to check if they are fully convertable.
10    public ConvertableChecks() {}
11
12    private TestContext testContextInstance;
13
14    /// <summary>
15    ///Gets or sets the test context which provides
16    ///information about and functionality for the current test run.
17    ///</summary>
18    public TestContext TestContext {
19      get {
20        return testContextInstance;
21      }
22      set {
23        testContextInstance = value;
24      }
25    }
26
27    #region Additional test attributes
28    //
29    // You can use the following additional attributes as you write your tests:
30    //
31    // Use ClassInitialize to run code before running the first test in the class
32    // [ClassInitialize()]
33    // public static void MyClassInitialize(TestContext testContext) { }
34    //
35    // Use ClassCleanup to run code after all tests in a class have run
36    // [ClassCleanup()]
37    // public static void MyClassCleanup() { }
38    //
39    // Use TestInitialize to run code before running each test
40    // [TestInitialize()]
41    // public void MyTestInitialize() { }
42    //
43    // Use TestCleanup to run code after each test has run
44    // [TestCleanup()]
45    // public void MyTestCleanup() { }
46    //
47    #endregion
48
49    [TestMethod]
50    public void TestMethod1() {
51      //
52      // TODO: Add test logic here
53      //
54    }
55  }
56}
Note: See TracBrowser for help on using the repository browser.