projects
/
GPU.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Ajout des cas de tests pour les TP non-graphiques. Cleanage en tous genres.
[GPU.git]
/
WCudaMSE
/
Student_Cuda
/
src
/
cpp
/
test
/
junit
/
01c_Saucisson
/
TestSaucisson.h
1
#ifndef TEST_SAUCISSON_H
2
#define TEST_SAUCISSON_H
3
4
#include
"cpptest.h"
5
using
Test
::
Suite
;
6
7
class
TestSaucisson
:
public
Suite
8
{
9
public
:
10
TestSaucisson
(
int
deviceId
);
11
12
private
:
13
void
testSaucissonCuda
();
14
15
private
:
16
int
deviceId
;
17
};
18
19
#endif