Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9765 for trunk/sources


Ignore:
Timestamp:
07/26/13 13:03:30 (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.BinaryVectorEncoding-3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/NPointCrossoverTest.cs

    r9764 r9765  
    8484    ///A test for Cross
    8585    ///</summary>
    86     [TestMethod()]
     86    [TestMethod]
    8787    [DeploymentItem("HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll")]
    8888    public void NPointCrossoverCrossTest() {
     
    118118    ///A test for Apply
    119119    ///</summary>
    120     [TestMethod()]
     120    [TestMethod]
    121121    public void NPointCrossoverApplyTest() {
    122122      TestRandom random = new TestRandom();
     
    171171    ///A test for SinglePointCrossover Constructor
    172172    ///</summary>
    173     [TestMethod()]
     173    [TestMethod]
    174174    public void NPointCrossoverConstructorTest() {
    175175      NPointCrossover target = new NPointCrossover();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/SinglePointCrossoverTest.cs

    r9764 r9765  
    8484    ///A test for Cross
    8585    ///</summary>
    86     [TestMethod()]
     86    [TestMethod]
    8787    [DeploymentItem("HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll")]
    8888    public void SinglePointCrossoverCrossTest() {
     
    120120    ///A test for SinglePointCrossover Constructor
    121121    ///</summary>
    122     [TestMethod()]
     122    [TestMethod]
    123123    public void SinglePointCrossoverConstructorTest() {
    124124      SinglePointCrossover target = new SinglePointCrossover();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/SinglePositionBitflipManipulatorTest.cs

    r9764 r9765  
    8282    ///A test for Apply
    8383    ///</summary>
    84     [TestMethod()]
     84    [TestMethod]
    8585    public void SinglePositionBitflipManipulatorApplyTest() {
    8686      TestRandom random = new TestRandom();
     
    100100    ///A test for SinglePositionBitflipManipulator Constructor
    101101    ///</summary>
    102     [TestMethod()]
     102    [TestMethod]
    103103    public void SinglePositionBitflipManipulatorConstructorTest() {
    104104      SinglePositionBitflipManipulator target = new SinglePositionBitflipManipulator();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/SomePositionsBitflipManipulatorTest.cs

    r9764 r9765  
    8383    ///A test for Apply
    8484    ///</summary>
    85     [TestMethod()]
     85    [TestMethod]
    8686    public void SomePositionsBitflipManipulatorApplyTest() {
    8787      TestRandom random = new TestRandom();
     
    101101    ///A test for SomePositionsBitflipManipulator Constructor
    102102    ///</summary>
    103     [TestMethod()]
     103    [TestMethod]
    104104    public void SomePositionsBitflipManipulatorConstructorTest() {
    105105      SomePositionsBitflipManipulator target = new SomePositionsBitflipManipulator();
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.BinaryVectorEncoding-3.3/UniformCrossoverTest.cs

    r9764 r9765  
    8484    ///A test for Cross
    8585    ///</summary>
    86     [TestMethod()]
     86    [TestMethod]
    8787    [DeploymentItem("HeuristicLab.Encodings.BinaryVectorEncoding-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();
     
    161161    ///A test for SinglePointCrossover Constructor
    162162    ///</summary>
    163     [TestMethod()]
     163    [TestMethod]
    164164    public void SinglePointCrossoverConstructorTest() {
    165165      NPointCrossover target = new NPointCrossover();
Note: See TracChangeset for help on using the changeset viewer.