Remove test prefix from test methods

We previously used 'test' to prefix tests but have decided to stop this.
This change removes the prefix from all test code.

Change-Id: I229a36751adc6a87fbae8d6f373671e141529496
This commit is contained in:
Patrick Hiesel
2016-12-06 09:27:46 +01:00
parent b7944aedac
commit a02a5c01e9
80 changed files with 543 additions and 542 deletions

View File

@@ -20,7 +20,7 @@ import org.junit.Test;
public class EditDeserializerTest {
@Test
public void testDiffDeserializer() {
public void diffDeserializer() {
assertNotNull("edit deserializer", new EditDeserializer());
}
}