-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
28 changes: 28 additions & 0 deletions
28
proteus-core/src/test/java/io/sinistral/proteus/test/controllers/GenericBeanTest.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,28 @@ | ||
package io.sinistral.proteus.test.controllers; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import org.junit.jupiter.api.TestInstance; | ||
import org.junit.jupiter.api.AfterAll; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.TestInstance; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
@TestInstance(TestInstance.Lifecycle.PER_CLASS) | ||
class GenericBeanTest { | ||
|
||
private static final Logger logger = LoggerFactory.getLogger(GenericBean.class.getName()); | ||
|
||
@Override | ||
@BeforeAll | ||
protected void setUp() | ||
{ | ||
|
||
super.setUp(); | ||
} | ||
|
||
} |
4 changes: 4 additions & 0 deletions
4
proteus-core/src/test/java/io/sinistral/proteus/test/server/AbstractEndpointTest.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,4 @@ | ||
package io.sinistral.proteus.test.server; | ||
|
||
public class AbstractEndpointTest { | ||
} |