Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9766


Ignore:
Timestamp:
07/26/13 13:03:31 (11 years ago)
Author:
mkommend
Message:

#2088: Removed useless brackets in the TestMethod attribute and added test categories and properties for SymExpTreeEncoding unit test.

Location:
trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.IntegerVectorEncoding-3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.IntegerVectorEncoding-3.3/DiscreteCrossoverTest.cs

    r9764 r9766  
    8484    ///A test for Cross
    8585    ///</summary>
    86     [TestMethod()]
     86    [TestMethod]
    8787    [DeploymentItem("HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll")]
    8888    public void DiscreteCrossoverCrossTest() {
     
    108108    ///A test for Apply
    109109    ///</summary>
    110     [TestMethod()]
     110    [TestMethod]
    111111    public void DiscreteCrossoverApplyTest() {
    112112      TestRandom random = new TestRandom();
     
    140140    ///A test for DiscreteCrossover Constructor
    141141    ///</summary>
    142     [TestMethod()]
     142    [TestMethod]
    143143    public void DiscreteCrossoverConstructorTest() {
    144144      DiscreteCrossover target = new DiscreteCrossover();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.IntegerVectorEncoding-3.3/SinglePointCrossoverTest.cs

    r9764 r9766  
    8484    ///A test for Cross
    8585    ///</summary>
    86     [TestMethod()]
     86    [TestMethod]
    8787    [DeploymentItem("HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll")]
    8888    public void SinglePointCrossoverCrossTest() {
     
    120120    ///A test for Apply
    121121    ///</summary>
    122     [TestMethod()]
     122    [TestMethod]
    123123    public void SinglePointCrossoverApplyTest() {
    124124      TestRandom random = new TestRandom();
     
    151151    ///A test for SinglePointCrossover Constructor
    152152    ///</summary>
    153     [TestMethod()]
     153    [TestMethod]
    154154    public void SinglePointCrossoverConstructorTest() {
    155155      SinglePointCrossover target = new SinglePointCrossover();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.IntegerVectorEncoding-3.3/UniformOnePositionManipulatorTest.cs

    r9764 r9766  
    8383    ///A test for Apply
    8484    ///</summary>
    85     [TestMethod()]
     85    [TestMethod]
    8686    public void UniformOnePositionManipulatorApplyTest() {
    8787      TestRandom random = new TestRandom();
     
    102102    ///A test for UniformOnePositionManipulator Constructor
    103103    ///</summary>
    104     [TestMethod()]
     104    [TestMethod]
    105105    public void UniformOnePositionManipulatorConstructorTest() {
    106106      UniformOnePositionManipulator target = new UniformOnePositionManipulator();
Note: See TracChangeset for help on using the changeset viewer.