Changeset 15289 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Components/PrintStackTests.cs
- Timestamp:
- 07/26/17 19:34:13 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
-
Property
svn:ignore
set to
*.user
-
Property
svn:ignore
set to
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Tests/Components/PrintStackTests.cs
r15189 r15289 20 20 printStack.Push(100L); 21 21 22 Assert.AreEqual(100L.ToString(), printStack.To p);22 Assert.AreEqual(100L.ToString(), printStack.ToString()); 23 23 } 24 24 … … 27 27 printStack.Push(100.5D); 28 28 29 Assert.AreEqual(100.5D.ToString(), printStack.To p);29 Assert.AreEqual(100.5D.ToString(), printStack.ToString()); 30 30 } 31 31
Note: See TracChangeset
for help on using the changeset viewer.