diff --git a/branches/newMo/test/t-moNeighbor.cpp b/branches/newMo/test/t-moNeighbor.cpp index 2501e3bb4..2bbcdc0e9 100644 --- a/branches/newMo/test/t-moNeighbor.cpp +++ b/branches/newMo/test/t-moNeighbor.cpp @@ -4,16 +4,15 @@ int main(){ - moDummyNeighbor n1; + moDummyNeighbor n1, n3; -// n1.fitness(12); + n1.fitness(12); -// moDummyNeighbor n2(n1); + moDummyNeighbor n2(n1); + assert(n1.fitness() == n2.fitness()); -// assert(n1.fitness() == n2.fitness()); - -// n3=n1; -// assert(n1.fitness() == n3.fitness()); + n3=n1; + assert(n1.fitness() == n3.fitness()); return EXIT_SUCCESS; }