summaryrefslogtreecommitdiffstats
path: root/testfiles/src/cxxtests-to-migrate/mod360-test.h
blob: 12ee994fffb993bac0cc80396b0845003a652c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
 * TODO: insert short description here
 *//*
 * Authors: see git history
 *
 * Copyright (C) 2016 Authors
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifndef SEEN_MOD_360_TEST_H
#define SEEN_MOD_360_TEST_H

#include <cxxtest/TestSuite.h>
#include <2geom/math-utils.h>
#include "mod360.h"


class Mod360Test : public CxxTest::TestSuite
{
public:
    static double inf() { return INFINITY; }
    static double nan() { return ((double)INFINITY) - ((double)INFINITY); }

    void testMod360()
    {
        double cases[][2] = {
            {0, 0},
            {10, 10},
            {360, 0},
            {361, 1},
            {-1, 359},
            {-359, 1},
            {-360, -0},
            {-361, 359},
            {inf(), 0},
            {-inf(), 0},
            {nan(), 0},
            {720, 0},
            {-721, 359},
            {-1000, 80}
        };

        for ( unsigned i = 0; i < G_N_ELEMENTS(cases); i++ ) {
            double result = mod360( cases[i][0] );
            TS_ASSERT_EQUALS( cases[i][1], result );
        }
    }

};


#endif // SEEN_MOD_360_TEST_H

/*
  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:fileencoding=utf-8:textwidth=99 :