-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
133 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
compile: | ||
# Choosing to run compilation tests on 2 different Arduino platforms | ||
platforms: | ||
- uno | ||
- leonardo | ||
- due | ||
- zero | ||
libraries: | ||
- "printHelpers" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: Arduino CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
arduino_ci: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: Arduino-CI/action@master | ||
# Arduino-CI/action@v0.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// | ||
// FILE: unit_test_001.cpp | ||
// AUTHOR: Rob Tillaart | ||
// DATE: 2021-01-09 | ||
// PURPOSE: unit tests for the timing libraty | ||
// https://github.com/RobTillaart/timing | ||
// 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) | ||
|
||
#include <ArduinoUnitTests.h> | ||
|
||
#include "Arduino.h" | ||
#include "timing.h" | ||
|
||
|
||
unittest_setup() | ||
{ | ||
} | ||
|
||
unittest_teardown() | ||
{ | ||
} | ||
|
||
|
||
unittest(test_constructor) | ||
{ | ||
fprintf(stderr, "VERSION: %s\n", TIMING_LIB_VERSION); | ||
|
||
microSeconds mic; | ||
assertEqual(0, mic.getOffset()); | ||
mic.set(100); | ||
assertEqual(4294967196, mic.getOffset()); // max uint32_t - 100 | ||
|
||
milliSeconds mil; | ||
assertEqual(0, mil.getOffset()); | ||
mil.set(100); | ||
assertEqual(4294967196, mil.getOffset()); | ||
|
||
seconds sec; | ||
assertEqual(0, sec.getOffset()); | ||
sec.set(100); | ||
assertEqual(4294967196, sec.getOffset()); | ||
|
||
fprintf(stderr, "%d\n", mic.now()); | ||
fprintf(stderr, "%d\n", mil.now()); | ||
fprintf(stderr, "%d\n", sec.now()); | ||
|
||
} | ||
|
||
unittest_main() | ||
|
||
// -------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters