test updated

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1805 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jhumeau 2010-05-07 15:43:45 +00:00
commit e86685bea6
2 changed files with 24 additions and 0 deletions

View file

@ -37,6 +37,17 @@ int main(){
std::cout << "[t-moSolInit] => START" << std::endl;
int a=3;
int b=5;
moSolInit<int> test(a);
test(b);
assert(b==3);
a=4;
test(b);
assert(b==4);
std::cout << "[t-moSolInit] => OK" << std::endl;