nr-point-fns-test.h revision 6b15695578f07a3f72c4c9475c1a261a3021472a
#include <cxxtest/TestSuite.h>
#include <cassert>
#include <cmath>
#include <stdlib.h>
#include "libnr/nr-point-fns.h"
#include "isnan.h"
{
NrPointFnsTest() :
setupValid(true),
inf( 1e400 ),
{
}
virtual ~NrPointFnsTest() {}
// createSuite and destroySuite get us per-suite setup and teardown
// without us having to worry about static initialization order, etc.
// Called before each test in this suite
void setUp()
{
TS_ASSERT( setupValid );
}
bool setupValid;
double const small;
double const inf;
double const nan;
Point const small_left;
Point const small_n3_4;
void testL1(void)
{
}
void testL2(void)
{
}
void testLInfty(void)
{
}
void testIsZero(void)
{
}
void testAtan2(void)
{
}
void testUnitVector(void)
{
}
void testIsUnitVector(void)
{
}
};
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :