File tree 6 files changed +18
-20
lines changed
src/test/java/edu/hm/hafner/coverage
6 files changed +18
-20
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import org .junit .jupiter .api .Test ;
4
4
5
- import static org . assertj . core . api .Assertions .*;
5
+ import static edu . hm . hafner . coverage . assertions .Assertions .*;
6
6
7
7
class ClassNodeTest extends AbstractNodeTest {
8
8
@ Override
@@ -17,15 +17,16 @@ Node createNode(final String name) {
17
17
18
18
@ Test
19
19
void shouldHandleUnexpectedNodes () {
20
- var root = new ClassNode ("Class" );
20
+ var classNode = new ClassNode ("Class" );
21
21
var main = new MethodNode ("main" , "String..." );
22
- root .addChild (main );
23
- root .addChild (new ClassNode ("NestedClass" ));
22
+ classNode .addChild (main );
23
+ classNode .addChild (new ClassNode ("NestedClass" ));
24
24
25
- assertThat (root .findMethod ("main" , "String..." ))
25
+ assertThat (classNode .findMethod ("main" , "String..." ))
26
26
.isPresent ()
27
27
.containsSame (main );
28
- assertThat (root .findMethod ("main" , "Nothing" ))
28
+ assertThat (classNode .findMethod ("main" , "Nothing" ))
29
29
.isNotPresent ();
30
+ assertThat (classNode ).isNotAggregation ();
30
31
}
31
32
}
Original file line number Diff line number Diff line change @@ -17,17 +17,16 @@ Node createNode(final String name) {
17
17
18
18
@ Test
19
19
void shouldAggregateSourceFolders () {
20
- var root = new ContainerNode ("root" );
20
+ var containerNode = new ContainerNode ("root" );
21
21
var left = new ModuleNode ("left" );
22
- root .addChild (left );
22
+ containerNode .addChild (left );
23
23
var right = new ModuleNode ("right" );
24
- root .addChild (right );
24
+ containerNode .addChild (right );
25
25
26
- assertThat (root .getSourceFolders ()).isEmpty ();
27
- assertThat (root .getChildren ()).containsExactly (left , right );
26
+ assertThat (containerNode ).hasNoSourceFolders ().hasOnlyChildren (left , right ).isAggregation ();
28
27
29
28
left .addSource ("left/path" );
30
29
right .addSource ("right/path" );
31
- assertThat (root . getSourceFolders ()). containsExactly ("left/path" , "right/path" );
30
+ assertThat (containerNode ). hasSourceFolders ("left/path" , "right/path" );
32
31
}
33
32
}
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ void shouldGetFilePath() {
49
49
folder .addChild (file );
50
50
module .addChild (folder );
51
51
52
- assertThat (file . getRelativePath ()). isEqualTo ( relativePath );
52
+ assertThat (file ). hasRelativePath ( relativePath ). isNotAggregation ( );
53
53
var otherPath = "other" ;
54
54
55
55
assertThat (file .getFiles ()).containsExactly (relativePath );
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ void shouldCreateMethodCoverageNode() {
28
28
.hasMethodName ("shouldCreateMethodCoverageNode()" )
29
29
.hasSignature ("(Ljava/util/Map;)V" )
30
30
.hasLineNumber (16 )
31
- .hasValidLineNumber ();
31
+ .hasValidLineNumber ()
32
+ .isNotAggregation ();
32
33
}
33
34
34
35
@ Test
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Metric getMetric() {
16
16
Node createNode (final String name ) {
17
17
var moduleNode = new ModuleNode (name );
18
18
moduleNode .addSource ("/path/to/sources" );
19
+ assertThat (moduleNode ).hasSourceFolders ("/path/to/sources" ).isAggregation ();
19
20
return moduleNode ;
20
21
}
21
22
Original file line number Diff line number Diff line change @@ -21,32 +21,28 @@ Node createNode(final String name) {
21
21
*/
22
22
@ Test
23
23
void shouldCopyEmpty () {
24
- // Given
25
24
String parentName = ".ui.home.model" ;
26
25
var parent = new PackageNode (parentName );
27
26
var child = new PackageNode ("data" );
28
27
parent .addChild (child );
29
28
30
- // When
31
29
Node actualEmptyCopy = parent .copy ();
32
30
33
- // Then
34
31
assertThat (actualEmptyCopy )
35
32
.hasName (parentName )
36
33
.hasNoChildren ()
37
- .isEqualTo (new PackageNode (parentName ));
34
+ .isEqualTo (new PackageNode (parentName ))
35
+ .isAggregation ();
38
36
}
39
37
40
38
/**
41
39
* Tests the match functionality using a path hashcode.
42
40
*/
43
41
@ Test
44
42
void shouldMatchPath () {
45
- // Given
46
43
String pkgName = "ui.home.model" ;
47
44
var pkg = new PackageNode (pkgName );
48
45
49
- // When & Then
50
46
assertThat (pkg .matches (PACKAGE , "ui.home.model" .hashCode ())).isTrue ();
51
47
assertThat (pkg .matches (PACKAGE , "test.path" .hashCode ())).isFalse ();
52
48
}
You can’t perform that action at this time.
0 commit comments