Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Student_OMP / src / cpp / test / unit / 01_Test_Hello / TestHello.cpp
1 #include "TestHello.h"
2
3
4 /*----------------------------------------------------------------------*\
5 |* Declaration *|
6 \*---------------------------------------------------------------------*/
7
8 /*--------------------------------------*\
9 |* Imported *|
10 \*-------------------------------------*/
11
12 extern void helloOMP1(void);
13 extern void helloOMP2(void);
14
15 /*----------------------------------------------------------------------*\
16 |* Implementation *|
17 \*---------------------------------------------------------------------*/
18
19 TestHello::TestHello(void)
20 {
21 TEST_ADD(TestHello::testHelloOMP1);
22 TEST_ADD(TestHello::testHelloOMP2);
23 }
24
25 void TestHello::testHelloOMP1(void)
26 {
27 helloOMP1();
28 }
29
30 void TestHello::testHelloOMP2(void)
31 {
32 helloOMP2();
33 }
34
35 /*----------------------------------------------------------------------*\
36 |* End *|
37 \*---------------------------------------------------------------------*/
38