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.h
1 #ifndef TEST_MONTE_CARLO_H
2 #define TEST_MONTE_CARLO_H
3
4 #include "cpptest.h"
5 using Test::Suite;
6
7 class TestMonteCarlo : public Suite
8 {
9 public:
10 TestMonteCarlo(int deviceId);
11
12 private:
13 void testMonteCarlo();
14
15 private:
16 int deviceId;
17 };
18
19 #endif