Added last test to test.

This commit is contained in:
Sylvain Pion 1998-10-21 15:28:16 +00:00
parent 814447927d
commit e861e5bcc2
1 changed files with 5 additions and 3 deletions

View File

@ -148,15 +148,17 @@ int division_test()
}
// Here it's just to have a 100% coverage by the test-suite.
// Here it's just to have a 100% coverage for the test-suite.
int multiplication_test()
{
IA a (-2,-1), b (-1,1), c;
IA d (-2,2), e (1,2), f (-2,-1), g, h;
const IA a (-2,-1), b (-1,1);
const IA d (-2,2), e (1,2), f (-2,-1);
IA c, g, h, i;
c = a * b;
g = d * e;
h = d * f;
i = a * e;
return -1;
}