forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAEL-1861 Replaced real tests with demo test "placeholders" (eugenp#4887
- Loading branch information
Showing
17 changed files
with
98 additions
and
333 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
...modules/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/FirstUnitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.baeldung.junit4.runfromjava; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertTrue; | ||
|
||
|
||
public class FirstUnitTest { | ||
|
||
@Test | ||
public void whenThis_thenThat() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
public void whenSomething_thenSomething() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
public void whenSomethingElse_thenSomethingElse() { | ||
assertTrue(true); | ||
} | ||
|
||
} |
32 changes: 0 additions & 32 deletions
32
...ules/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/ListNodeUnitTest.java
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
...es/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/MergeListsUnitTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 0 additions & 33 deletions
33
...unitfromjava/src/test/java/com/baeldung/junit4/runfromjava/RemovedNthElementUnitTest.java
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
...es/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/RotateListUnitTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...odules/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/SecondUnitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.baeldung.junit4.runfromjava; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertTrue; | ||
|
||
public class SecondUnitTest { | ||
|
||
@Test | ||
public void whenSomething_thenSomething() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
public void whensomethingElse_thenSomethingElse() { | ||
assertTrue(true); | ||
} | ||
} |
27 changes: 0 additions & 27 deletions
27
...les/runjunitfromjava/src/test/java/com/baeldung/junit4/runfromjava/SwapNodesUnitTest.java
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
...modules/runjunitfromjava/src/test/java/com/baeldung/junit5/runfromjava/FirstUnitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.baeldung.junit5.runfromjava; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
class FirstUnitTest { | ||
|
||
@Test | ||
void whenThis_thenThat() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
void whenSomething_thenSomething() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
void whenSomethingElse_thenSomethingElse() { | ||
assertTrue(true); | ||
} | ||
|
||
} |
30 changes: 0 additions & 30 deletions
30
...ules/runjunitfromjava/src/test/java/com/baeldung/junit5/runfromjava/ListNodeUnitTest.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
...es/runjunitfromjava/src/test/java/com/baeldung/junit5/runfromjava/MergeListsUnitTest.java
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
...unitfromjava/src/test/java/com/baeldung/junit5/runfromjava/RemovedNthElementUnitTest.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.