Greetings class moved to com.baeldung.junit5 package

This commit is contained in:
Marcos Lopez Gonzalez 2017-11-02 11:59:23 +01:00
parent 7769cde1c6
commit a77a10a42a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.junit5.mockito; package com.baeldung.junit5;
public class Greetings { public class Greetings {

View File

@ -6,7 +6,7 @@ import org.junit.jupiter.api.Test;
import org.junit.platform.runner.JUnitPlatform; import org.junit.platform.runner.JUnitPlatform;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import com.baeldung.junit5.mockito.Greetings; import com.baeldung.junit5.Greetings;
@RunWith(JUnitPlatform.class) @RunWith(JUnitPlatform.class)
public class GreetingsTest { public class GreetingsTest {