-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathPreconditions.java
More file actions
114 lines (91 loc) · 1.9 KB
/
Preconditions.java
File metadata and controls
114 lines (91 loc) · 1.9 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import org.junit.Assert;
import org.junit.jupiter.api.Assertions;
public class Preconditions {
public static void guarded() {}
void test1() {
Assert.assertTrue(true);
guarded();
}
void test2() {
Assert.assertTrue(false);
guarded();
}
void test3() {
Assert.assertFalse(false);
guarded();
}
void test4() {
Assert.assertFalse(true);
guarded();
}
void test5() {
Assert.assertTrue("Reason", true);
guarded();
}
void test6() {
Assert.assertTrue("Reason", false);
guarded();
}
void test7() {
Assert.assertFalse("Reason", false);
guarded();
}
void test8() {
Assert.assertFalse("Reason", true);
guarded();
}
void test9() {
Assertions.assertTrue(true);
guarded();
}
void test10() {
Assertions.assertTrue(false);
guarded();
}
void test11() {
Assertions.assertFalse(false);
guarded();
}
void test12() {
Assertions.assertFalse(true);
guarded();
}
void test13() {
Assertions.assertTrue(true, "Reason");
guarded();
}
void test14() {
Assertions.assertTrue(false, "Reason");
guarded();
}
void test15() {
Assertions.assertFalse(false, "Reason");
guarded();
}
void test16() {
Assertions.assertFalse(true, "Reason");
guarded();
}
void test17() {
t(true);
guarded();
}
void test18() {
t(false);
guarded();
}
void test19() {
f(false);
guarded();
}
void test20() {
f(true);
guarded();
}
static void t(boolean b) {
Assert.assertTrue("Unified Reason", b);
}
static void f(boolean b) {
Assert.assertFalse("Unified Reason", b);
}
}