-
Notifications
You must be signed in to change notification settings - Fork 180
/
ClassAssertionsExamples.java
125 lines (105 loc) · 4.19 KB
/
ClassAssertionsExamples.java
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
115
116
117
118
119
120
121
122
123
124
125
/**
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2012-2016 the original author or authors.
*/
package org.assertj.examples;
import static org.assertj.core.api.Assertions.assertThat;
import org.assertj.examples.data.Employee;
import org.assertj.examples.data.Magical;
import org.assertj.examples.data.Person;
import org.assertj.examples.data.Powerful;
import org.assertj.examples.data.Ring;
import org.assertj.examples.data.TolkienCharacter;
import org.junit.jupiter.api.Test;
/**
* Class assertions specific examples
*
* @author Joel Costigliola
*/
public class ClassAssertionsExamples extends AbstractAssertionsExamples {
@Test
public void class_assertions_examples() {
assertThat(Magical.class).isAnnotation();
assertThat(Ring.class).isNotAnnotation()
.hasAnnotation(Magical.class);
try {
assertThat(Ring.class).isAnnotation();
} catch (AssertionError e) {
logAssertionErrorMessage("isAnnotation", e);
}
try {
assertThat(TolkienCharacter.class).hasAnnotation(Magical.class);
} catch (AssertionError e) {
logAssertionErrorMessage("hasAnnotation", e);
}
assertThat(TolkienCharacter.class).isNotInterface()
.hasPackage("org.assertj.examples.data")
.hasPackage(Package.getPackage("org.assertj.examples.data"));
assertThat(Person.class).isAssignableFrom(Employee.class);
assertThat(Employee.class).hasSuperclass(Person.class);
assertThat(Cloneable.class).hasNoSuperclass();
}
@Test
public void class_visibility_examples() {
assertThat(TolkienCharacter.class).isPublic();
assertThat(String.class).isPublic();
assertThat(MyClass.class).isProtected();
assertThat(MySuperClass.class).isPackagePrivate();
try {
assertThat(TolkienCharacter.class).isProtected();
} catch (AssertionError e) {
logAssertionErrorMessage("isProtected", e);
}
}
@Test
public void method_visibility_examples() {
assertThat(TolkienCharacter.class).hasPublicMethods("getName", "getRace");
try {
assertThat(TolkienCharacter.class).hasPublicMethods("getAliases");
} catch (AssertionError e) {
logAssertionErrorMessage("hasPublicMethods", e);
}
}
@Test
public void class_fields_assertions_examples() {
assertThat(MyClass.class).hasPublicFields("fieldOne")
.hasPublicFields("fieldOne", "fieldTwo")
.hasPublicFields("fieldTwo", "fieldOne")
.hasDeclaredFields("fieldThree")
.hasDeclaredFields("fieldThree", "fieldTwo", "fieldOne")
.hasOnlyPublicFields("fieldOne", "fieldTwo")
.hasOnlyPublicFields("fieldTwo", "fieldOne")
.hasOnlyDeclaredFields("fieldThree", "fieldTwo", "fieldOne");
}
@Test
public void class_methods_assertions_examples() {
assertThat(MyClass.class).hasMethods("methodOne", "methodTwo", "superMethod", "privateSuperMethod")
.hasPublicMethods("methodOne", "superMethod")
.hasDeclaredMethods("methodTwo", "methodOne");
}
@Test
public void should_not_produce_warning_for_varargs_parameter() {
assertThat(Ring.class).hasAnnotations(Magical.class, Powerful.class);
}
@SuppressWarnings("unused")
class MySuperClass {
public void superMethod() {}
private void privateSuperMethod() {}
}
@SuppressWarnings("unused")
protected class MyClass extends MySuperClass {
public String fieldOne;
public String fieldTwo;
private String fieldThree;
public void methodOne() {}
private void methodTwo() {}
}
}