commit 1471671850a8a46a5a9acc66062f1bc4ce4846a7
parent f3946b60102baf97e8684d6f9f95e0ecad5f8fc8
Author: fundamental <[email protected]>
Date: Sat, 2 Jun 2012 15:31:55 -0400
Reduces scope of overzealous test
Diffstat:
1 file changed, 0 insertions(+), 10 deletions(-)
diff --git a/src/Tests/MicrotonalTest.h b/src/Tests/MicrotonalTest.h
@@ -70,14 +70,6 @@ class MicrotonalTest:public CxxTest::TestSuite
TS_ASSERT_DELTA(testMicro->getnotefreq(19, 0), 24.4997f, 0.0001f);
}
- //performs basic sanity check with the == and != operators
- void testeqeq() {
- Microtonal other;
- TS_ASSERT(*testMicro == other); //both are constructed the same, so they should be equal
- other.PAfreq = 220.0f;
- TS_ASSERT(*testMicro != other); //other is now different
- }
-
//Tests saving/loading to XML
void testXML() {
//Gah, the XMLwrapper is a twisted maze
@@ -110,8 +102,6 @@ class MicrotonalTest:public CxxTest::TestSuite
TS_ASSERT(!strcmp(tmp, tmpo));
free(tmp);
free(tmpo);
-
- TS_ASSERT(*testMicro == other); //cxxTest sees error here
}
#if 0