Frobby 0.9.5
testmain.cpp
Go to the documentation of this file.
1/* Frobby: Software for monomial ideal computations.
2 Copyright (C) 2009 Bjarke Hammersholt Roune (www.broune.com)
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see http://www.gnu.org/licenses/.
16*/
17#include "stdinc.h"
18#include "all.h"
19
20#include "TestRunner.h"
21#include "asserts.h"
22
24 cout << "inside qbob" << endl;
25}
26
28 cout << "inside bob11" << endl;
29}
31 cout << "inside bob12" << endl;
32}
34 cout << "inside bob21" << endl;
35 ASSERT_EQ(3,4);
36}
37
39 cout << "inside bob22" << endl;
40}
41
44
46 try {
48 GET_TEST_SUITE(root).accept(runner);
49 } catch (std::exception& e) {
50 cout << "caught exception!" << endl;
51 cout << e.what() << endl;
52 }
53
54 return 0;
55}
void nameFactoryRegister(NameFactory< AbstractProduct > &factory)
Registers the string returned by ConcreteProduct::getStaticName() to a function that default-construc...
#define ASSERT_EQ(A, B)
Definition asserts.h:147
Runs every test in forward order.
Definition TestRunner.h:25
#define TEST_SUITE2(PARENT, SUITE)
Definition macroes.h:28
#define TEST(SUITE, TEST_NAME)
Definition macroes.h:41
#define GET_TEST_SUITE(SUITE)
Definition macroes.h:20
#define TEST_SUITE(SUITE)
Definition macroes.h:26
int main()
Definition testmain.cpp:45