Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / test / junit / 01_Test_Hello / TestHello.h
1 #ifndef TEST_HELLO_H
2 #define TEST_HELLO_H
3
4 #include "cpptest.h"
5
6 using Test::Suite;
7
8 /*----------------------------------------------------------------------*\
9 |* Declaration *|
10 \*---------------------------------------------------------------------*/
11
12 class TestHello: public Suite
13 {
14 public:
15
16 TestHello(int deviceId);
17
18 private:
19
20 void testHelloCuda(void);
21 void testAdd(void);
22
23 private:
24
25 int deviceId;
26
27 };
28
29 #endif
30
31 /*----------------------------------------------------------------------*\
32 |* End *|
33 \*---------------------------------------------------------------------*/
34