summaryrefslogtreecommitdiff
path: root/tests/corelib/numerics/Commodity.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/corelib/numerics/Commodity.h')
-rw-r--r--tests/corelib/numerics/Commodity.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/corelib/numerics/Commodity.h b/tests/corelib/numerics/Commodity.h
deleted file mode 100644
index dafa03e9..00000000
--- a/tests/corelib/numerics/Commodity.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef _COMMMODITY_H
-#define _COMMMODITY_H
-
-#include "UnitTests.h"
-
-class CommodityTestCase : public CPPUNIT_NS::TestCase
-{
- CPPUNIT_TEST_SUITE(CommodityTestCase);
-
- CPPUNIT_TEST(testPriceHistory);
- CPPUNIT_TEST(testLots);
- CPPUNIT_TEST(testScalingBase);
- CPPUNIT_TEST(testReduction);
-
- CPPUNIT_TEST_SUITE_END();
-
-public:
- CommodityTestCase() {}
- virtual ~CommodityTestCase() {}
-
- virtual void setUp();
- virtual void tearDown();
-
- void testPriceHistory();
- void testLots();
- void testScalingBase();
- void testReduction();
-
-private:
- CommodityTestCase(const CommodityTestCase &copy);
- void operator=(const CommodityTestCase &copy);
-};
-
-#endif /* _COMMMODITY_H */