-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.assert_demo.cpp
53 lines (52 loc) · 1.08 KB
/
test.assert_demo.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
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include "test.assert.h"
using namespace std;
void solver(){
int a, b;
cin>>a>>b;
cout<<a+b<<endl; // endl or \n
}
int main(){
vector<int> a = {1,2,3,4,5};
debug(a);
RUN_TESTS;
return 0;
}
MAKE_TESTS{
It(add small numbers){
tin.set("3 4");
solver();
asserttout("7\n");
}
It(add larger numbers){
tin.set("99", "99");
solver();
asserttout("198\n");
}
It(divide by zero){
vector<int> a = {1,2,3,4,5};
vector<int> b = {1,2,23,23,23};
asserteq(a, b);
}
It(mul by zero){
asserteq("test", "test");
}
It(randome testcase){
asserteq("test", "test");
}
{
asserteq("test", "test");
}
{
assert((bool)72);
}
{
assert(false);
}
// {
// tout.clear(); // have to call if you don't want to use It(){}
// tin.set("6", "8");
// solver();
// asserttout("14\n");
// } // UNSUPPORTED FROM NOW or call mannual ~tin.clear(), please use empty It(){} insted
}