-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAUnitMetaTest.h
72 lines (53 loc) · 1.2 KB
/
AUnitMetaTest.h
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
66
67
68
69
70
71
72
#line 2 "AUnitMetaTest.h"
#ifndef AUNIT_AUNIT_META_TEST_H
#define AUNIT_AUNIT_META_TEST_H
// If ArduinoUnit is used, this unit test no longer fits in a 32kB
// Arduino UNO or Nano.
#define USE_AUNIT 1
#if USE_AUNIT == 1
#if defined(__AVR__)
#include <AUnit.h>
#else
#include <AUnitVerbose.h>
#endif
using namespace aunit;
class CustomOnceFixture: public TestOnce {
protected:
void setup() override {
TestOnce::setup();
subject = 6;
}
void teardown() override {
TestOnce::teardown();
}
void assertCommon(int m) {
assertLess(m, subject);
}
void assertFailing() {
assertEqual(1, 2);
}
int subject;
};
class CustomAgainFixture: public TestAgain {
protected:
void setup() override {
TestAgain::setup();
subject = 6;
}
void teardown() override {
TestAgain::teardown();
}
void assertCommon(int m) {
assertLess(m, subject);
}
int subject;
};
#else
#include <ArduinoUnit.h>
// These are available only in AUnit so make them disappear in ArduinoUnit.
#define assertTestExpire(x)
#define assertTestNotExpire(x)
#define checkTestExpire(x) true
#define checkTestNotExpire(x) true
#endif
#endif