-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_stub_e9.cpp
43 lines (39 loc) · 1.01 KB
/
test_stub_e9.cpp
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
#include "../source/h2_unit.cpp"
#include "test_types.hpp"
static time_t STUB_time(time_t* x)
{
return 42;
}
SUITE(stub e9)
{
Todo(libc time)
{
OK(Nq(42), time(0));
unsigned char saved[16];
bool ret = h2::h2_e9_save((void*)time, saved);
OK(ret);
h2::h2_e9_set((void*)time, (void*)STUB_time);
OK(42, time(0));
h2::h2_e9_reset((void*)time, saved);
}
Case(normal foobar1)
{
OK(1, foobar1(0));
unsigned char saved[16];
bool ret = h2::h2_e9_save((void*)foobar1, saved);
OK(ret);
h2::h2_e9_set((void*)foobar1, (void*)foobar1_fake);
OK(-1, foobar1(0));
h2::h2_e9_reset((void*)foobar1, saved);
}
Case(variadic parameters function)
{
OK(6, foobar6((char*)"", 1, 2, 3));
unsigned char saved[16];
bool ret = h2::h2_e9_save((void*)foobar6, saved);
OK(ret);
h2::h2_e9_set((void*)foobar6, (void*)foobar6_fake);
OK(-6, foobar6((char*)"", 1, 2, 3));
h2::h2_e9_reset((void*)foobar6, saved);
}
}