| 1 | package com.example; | |
| 2 | ||
| 3 | import org.junit.jupiter.api.Test; | |
| 4 | ||
| 5 | import static org.junit.jupiter.api.Assertions.assertEquals; | |
| 6 | ||
| 7 | public class ExamplesTest { | |
| 8 | @Test | |
| 9 | void verifyHello() { | |
| 10 |
1
1. verifyHello : removed call to org/junit/jupiter/api/Assertions::assertEquals → SURVIVED |
assertEquals("Hello World!", new ExamplesLib().getMessage()); |
| 11 | } | |
| 12 | } | |
Mutations | ||
| 10 |
1.1 |