Skip to content

Commit

Permalink
~fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shanshin committed May 1, 2024
1 parent 38f1714 commit 779b271
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ internal class ReportInheritedFromFilterTests {
xmlReport {
classCounter("org.jetbrains.RegularClass").assertAbsent()
classCounter("org.jetbrains.CloseableClass").assertAbsent()
// error in reporter here
classCounter("org.jetbrains.A").assertAbsent()

classCounter("org.jetbrains.B").assertFullyMissed()
Expand Down Expand Up @@ -99,7 +98,6 @@ internal class ReportInheritedFromFilterTests {
classCounter("org.jetbrains.D").assertAbsent()
classCounter("org.jetbrains.DChild").assertAbsent()

// error in reporter here
classCounter("org.jetbrains.B").assertFullyMissed()
classCounter("org.jetbrains.C").assertFullyMissed()
classCounter("org.jetbrains.AChild").assertFullyMissed()
Expand Down Expand Up @@ -129,8 +127,8 @@ internal class ReportInheritedFromFilterTests {
xmlReport {
classCounter("org.jetbrains.A").assertAbsent()
classCounter("org.jetbrains.B").assertAbsent()
classCounter("org.jetbrains.BChild").assertAbsent()

classCounter("org.jetbrains.BChild").assertFullyMissed()
classCounter("org.jetbrains.AChild").assertFullyMissed()
}
}
Expand All @@ -154,7 +152,6 @@ internal class ReportInheritedFromFilterTests {

run("koverXmlReport") {
xmlReport {
// error in reporter here
classCounter("org.jetbrains.A").assertFullyMissed()

// excluded as inheritor of A
Expand Down

0 comments on commit 779b271

Please sign in to comment.