File: ILTest.h

package info (click to toggle)
devil 1.6.8-rc2-3%2Blenny1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,004 kB
  • ctags: 4,659
  • sloc: ansic: 37,357; sh: 13,641; cpp: 7,193; pascal: 792; makefile: 348; python: 47
file content (36 lines) | stat: -rw-r--r-- 834 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//ILTest.h
#ifndef ILTEST_H
#define ILTEST_H

#include <cppunit/extensions/HelperMacros.h>

class ILTest : public CPPUNIT_NS::TestFixture
{
  CPPUNIT_TEST_SUITE( ILTest );
  CPPUNIT_TEST( TestilActiveImage );
  //CPPUNIT_TEST( TestilActiveLayer );
  //CPPUNIT_TEST( TestilActiveMipMap );
  //CPPUNIT_TEST( TestilApplyProfile );
  CPPUNIT_TEST( TestilBindImage );
  CPPUNIT_TEST( TestilClearColour );  
  CPPUNIT_TEST( TestilClearImage );  
  CPPUNIT_TEST( TestilCloneImage );  
  CPPUNIT_TEST( TestilConvertImage );  
  CPPUNIT_TEST( TestilSaveF );
  CPPUNIT_TEST_SUITE_END();

public:
  void setUp();
  void tearDown();

  void TestilActiveImage();
  void TestilBindImage();
  void TestilClearColour();
  void TestilClearImage();
  void TestilCloneImage();
  void TestilConvertImage();
  void TestilSaveF();

};

#endif  // ILTEST_H