GY-63_MS5611/libraries/Prandom/test/unit_test_001.cpp

75 lines
1.9 KiB
C++
Raw Normal View History

2021-01-29 06:31:58 -05:00
//
// FILE: unit_test_001.cpp
// AUTHOR: Rob Tillaart
// DATE: 2021-01-06
// PURPOSE: unit tests for the Prandom
// https://github.com/RobTillaart/Prandom
// https://github.com/Arduino-CI/arduino_ci/blob/master/REFERENCE.md
//
// supported assertions
// ----------------------------
// assertEqual(expected, actual); // a == b
// assertNotEqual(unwanted, actual); // a != b
// assertComparativeEquivalent(expected, actual); // abs(a - b) == 0 or (!(a > b) && !(a < b))
// assertComparativeNotEquivalent(unwanted, actual); // abs(a - b) > 0 or ((a > b) || (a < b))
// assertLess(upperBound, actual); // a < b
// assertMore(lowerBound, actual); // a > b
// assertLessOrEqual(upperBound, actual); // a <= b
// assertMoreOrEqual(lowerBound, actual); // a >= b
// assertTrue(actual);
// assertFalse(actual);
// assertNull(actual);
// // special cases for floats
// assertEqualFloat(expected, actual, epsilon); // fabs(a - b) <= epsilon
// assertNotEqualFloat(unwanted, actual, epsilon); // fabs(a - b) >= epsilon
// assertInfinity(actual); // isinf(a)
// assertNotInfinity(actual); // !isinf(a)
// assertNAN(arg); // isnan(a)
// assertNotNAN(arg); // !isnan(a)
2022-11-22 08:03:23 -05:00
2021-01-29 06:31:58 -05:00
#include <ArduinoUnitTests.h>
#include "Arduino.h"
#include "Prandom.h"
unittest_setup()
{
2021-12-23 14:43:00 -05:00
fprintf(stderr, "PRANDOM_LIB_VERSION: %s\n", (char *) PRANDOM_LIB_VERSION);
2021-01-29 06:31:58 -05:00
}
2021-12-23 14:43:00 -05:00
2021-01-29 06:31:58 -05:00
unittest_teardown()
{
}
2021-12-23 14:43:00 -05:00
2021-01-29 06:31:58 -05:00
unittest(test_constructor)
{
Prandom R;
2022-11-22 08:03:23 -05:00
// three seed() calls are possible
2021-01-29 06:31:58 -05:00
R.seed();
R.seed(42);
R.seed(355, 113);
assertLessOrEqual(100, R.randrange(100, 200));
assertMoreOrEqual(200, R.randrange(100, 200));
for (int bits = 0; bits < 32; bits++)
{
fprintf(stderr, "%d\t", bits);
assertMoreOrEqual(pow(2, bits), R.getrandbits(bits));
}
}
2021-12-23 14:43:00 -05:00
2021-01-29 06:31:58 -05:00
unittest_main()
// --------