Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/17 11:57:42 (7 years ago)
Author:
pkimmesw
Message:

#2665 Storable problem data, Renamings due to typos, Removed GP from class names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Interpreter/Expressions/ExecExpressionTests.cs

    r14727 r14733  
    5757    [TestCategory("ExecExpressionTest")]
    5858    public void TestK() {
    59       var first = PushGPParser.Parse("A");
    60       var second = PushGPParser.Parse("B");
    61       var third = PushGPParser.Parse("C");
     59      var first = PushParser.Parse("A");
     60      var second = PushParser.Parse("B");
     61      var third = PushParser.Parse("C");
    6262
    6363      this.interpreter.ExecStack.Push(third, second, first);
     
    7474    [TestCategory("ExecExpressionTest")]
    7575    public void TestS() {
    76       var first = PushGPParser.Parse("A");
    77       var second = PushGPParser.Parse("B");
    78       var third = PushGPParser.Parse("C");
    79       var result = PushGPParser.Parse("( B C )");
     76      var first = PushParser.Parse("A");
     77      var second = PushParser.Parse("B");
     78      var third = PushParser.Parse("C");
     79      var result = PushParser.Parse("( B C )");
    8080
    8181      this.interpreter.ExecStack.Push(third, second, first);
     
    9393    [TestCategory("ExecExpressionTest")]
    9494    public void TestY() {
    95       var first = PushGPParser.Parse("A");
    96       var result = PushGPParser.Parse("( EXEC.Y A )");
     95      var first = PushParser.Parse("A");
     96      var result = PushParser.Parse("( EXEC.Y A )");
    9797
    9898      this.interpreter.ExecStack.Push(first);
Note: See TracChangeset for help on using the changeset viewer.