source: git/tests/Singular/test_iparith.hpp @ 2617dd5

spielwiese
Last change on this file since 2617dd5 was 2617dd5, checked in by Kai Krüger <krueger@…>, 14 years ago
Added examples for cppunit tests. call make test to build and run them. git-svn-id: file:///usr/local/Singular/svn/trunk@12434 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 622 bytes
Line 
1#ifndef _test_iparith_hpp_
2#define _test_iparith_hpp_
3
4#include <cppunit/extensions/HelperMacros.h>
5#include "utils.hpp"
6
7namespace Singular {
8  namespace tests {
9    class IpArithTest : public CPPUNIT_NS::TestFixture {
10
11      CPPUNIT_TEST_SUITE(Singular::tests::IpArithTest);
12      CPPUNIT_TEST( test_iiArithFindCmd );
13      CPPUNIT_TEST( test_Timing1 );
14      CPPUNIT_TEST_SUITE_END();
15
16    public:
17      IpArithTest() {}
18      virtual ~IpArithTest() {}
19
20      void setUp();
21      void tearDown();
22
23    protected:
24      void test_iiArithFindCmd();
25      void test_Timing1();
26    };
27  }
28}
29#endif /* _test_iparith_hpp_ */
Note: See TracBrowser for help on using the repository browser.