source: git/tests/Singular/test_ipid.hpp @ 6ce030f

spielwiese
Last change on this file since 6ce030f was 383b2c8, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
CHG: mod2.h should better be included as <kernel/mod2.h>
  • Property mode set to 100644
File size: 888 bytes
Line 
1#ifndef _test_ipid_hpp_
2#define _test_ipid_hpp_
3
4#define NDEBUG
5
6
7#include <Singular/utils.h>
8#include <kernel/mod2.h>
9#include <kernel/structs.h>
10#include <cppunit/extensions/HelperMacros.h>
11
12namespace Singular {
13  namespace tests {
14    class IpIdTest : public CPPUNIT_NS::TestFixture {
15
16      CPPUNIT_TEST_SUITE(Singular::tests::IpIdTest);
17      CPPUNIT_TEST( test_iiS2I );
18      CPPUNIT_TEST( test_enterid );
19      CPPUNIT_TEST( test_killid );
20      CPPUNIT_TEST( test_killhdl );
21      CPPUNIT_TEST( test_ggetid );
22      CPPUNIT_TEST_SUITE_END();
23
24    public:
25      IpIdTest();
26      virtual ~IpIdTest() {}
27
28      void setUp();
29      void tearDown();
30
31    protected:
32      void test_iiS2I();
33      void test_enterid();
34      void test_killid();
35      void test_killhdl();
36      void test_ggetid();
37     
38    private:
39      package _basePack;
40    };
41  }
42}
43#endif /* _test_ipid_hpp_ */
Note: See TracBrowser for help on using the repository browser.