Ajout des cas de tests pour les TP non-graphiques. Cleanage en tous genres.
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / test / junit / 04_MonteCarlo / TestMonteCarlo.cpp
1 #include "TestMonteCarlo.h"
2
3 #include "MonteCarlo.h"
4
5 TestMonteCarlo::TestMonteCarlo(int deviceId) :
6 deviceId(deviceId)
7 {
8 TEST_ADD(TestMonteCarlo::testMonteCarlo);
9 }
10
11 void TestMonteCarlo::testMonteCarlo(void)
12 {
13 TEST_ASSERT(monteCarlo());
14 }