source: git/libpolys/tests/cxxtest/GlobalFixture.h @ 405407

spielwiese
Last change on this file since 405407 was 4aa8610, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
created libpolys/tests and set up the beginning of a test-suite using cxxtest
  • Property mode set to 100644
File size: 672 bytes
Line 
1#ifndef __cxxtest__GlobalFixture_h__
2#define __cxxtest__GlobalFixture_h__
3
4#include <cxxtest/LinkedList.h>
5
6namespace CxxTest
7{
8    class GlobalFixture : public Link
9    {
10    public:
11        virtual bool setUpWorld();
12        virtual bool tearDownWorld();
13        virtual bool setUp();
14        virtual bool tearDown();
15       
16        GlobalFixture();
17        ~GlobalFixture();
18       
19        static GlobalFixture *firstGlobalFixture();
20        static GlobalFixture *lastGlobalFixture();
21        GlobalFixture *nextGlobalFixture();
22        GlobalFixture *prevGlobalFixture();
23
24    private:
25        static List _list;
26    };
27}
28
29#endif // __cxxtest__GlobalFixture_h__
30
Note: See TracBrowser for help on using the repository browser.