Revision be77cf1dd000fb79a2c712ff01d5455661826482 authored by Hans Schoenemann on 19 November 2014, 13:06:05 UTC, committed by Hans Schoenemann on 19 November 2014, 13:06:05 UTC
1 parent 17a5979
Raw File
Suite.hpp

#include <cppunit/TestFixture.h>


#include <tests/Singular/test_ipid.hpp>
#include <tests/Singular/test_iparith.hpp>

namespace Singular {
  namespace tests {
    
    class Suite : public CPPUNIT_NS::TestFixture {
    public:
      static CPPUNIT_NS::Test *suite() {
        CPPUNIT_NS::TestSuite *suiteOfTests = 
          new CPPUNIT_NS::TestSuite( "SingularTestSuite" );


      suiteOfTests->addTest( IpIdTest::suite() );
      suiteOfTests->addTest( IpArithTest::suite() );

      return suiteOfTests;
      }
    };
  }
}
back to top