source: git/tests/Suite.hpp @ ee3e5aa

spielwiese
Last change on this file since ee3e5aa was 512f05, checked in by Kai Krüger <krueger@…>, 14 years ago
Should fix Ticket #243 git-svn-id: file:///usr/local/Singular/svn/trunk@13000 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 531 bytes
Line 
1
2#include <cppunit/TestFixture.h>
3
4
5#include <tests/Singular/test_ipid.hpp>
6#include <tests/Singular/test_iparith.hpp>
7
8namespace Singular {
9  namespace tests {
10   
11    class Suite : public CPPUNIT_NS::TestFixture {
12    public:
13      static CPPUNIT_NS::Test *suite() {
14        CPPUNIT_NS::TestSuite *suiteOfTests = 
15          new CPPUNIT_NS::TestSuite( "SingularTestSuite" );
16
17
18      suiteOfTests->addTest( IpIdTest::suite() );
19      suiteOfTests->addTest( IpArithTest::suite() );
20
21      return suiteOfTests;
22      }
23    };
24  }
25}
Note: See TracBrowser for help on using the repository browser.