source: git/tests/Suite.hpp @ 8d1432e

spielwiese
Last change on this file since 8d1432e was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 526 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.