Skip to content

Commit

Permalink
Updated dependencies and new tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Jul 6, 2022
1 parent 8ff44d1 commit 70af2b6
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Empty file.
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();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package io.sinistral.proteus.test.server;

public class AbstractEndpointTest {
}

0 comments on commit 70af2b6

Please sign in to comment.