git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1647 331e1502-861f-0410-8da2-ba01fb791d7f
19 lines
247 B
C++
19 lines
247 B
C++
#include "moTestClass.h"
|
|
|
|
#include <cassert>
|
|
|
|
int main(){
|
|
|
|
moDummyNeighbor n1;
|
|
|
|
// n1.fitness(12);
|
|
|
|
// moDummyNeighbor n2(n1);
|
|
|
|
// assert(n1.fitness() == n2.fitness());
|
|
|
|
// n3=n1;
|
|
// assert(n1.fitness() == n3.fitness());
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|