17 lines
416 B
C++
17 lines
416 B
C++
|
/*
|
||
|
* @file testNonlinearEquality.cpp
|
||
|
* @author Alex Cunningham
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <CppUnitLite/TestHarness.h>
|
||
|
#include "NonlinearEquality.h"
|
||
|
|
||
|
TEST ( NonlinearEquality, construction ) {
|
||
|
|
||
|
}
|
||
|
|
||
|
/* ************************************************************************* */
|
||
|
int main() { TestResult tr; return TestRegistry::runAllTests(tr); }
|
||
|
/* ************************************************************************* */
|