From 70af2b6c38728c16afb4d9bf0535da051c5e99f6 Mon Sep 17 00:00:00 2001 From: Joshua Bauer Date: Tue, 5 Jul 2022 19:16:29 -0700 Subject: [PATCH] Updated dependencies and new tests. --- .../src/main/resources/undertow-handlers.conf | 0 .../test/controllers/GenericBeanTest.java | 28 +++++++++++++++++++ .../test/server/AbstractEndpointTest.java | 4 +++ 3 files changed, 32 insertions(+) create mode 100644 proteus-core/src/main/resources/undertow-handlers.conf create mode 100644 proteus-core/src/test/java/io/sinistral/proteus/test/controllers/GenericBeanTest.java create mode 100644 proteus-core/src/test/java/io/sinistral/proteus/test/server/AbstractEndpointTest.java diff --git a/proteus-core/src/main/resources/undertow-handlers.conf b/proteus-core/src/main/resources/undertow-handlers.conf new file mode 100644 index 0000000..e69de29 diff --git a/proteus-core/src/test/java/io/sinistral/proteus/test/controllers/GenericBeanTest.java b/proteus-core/src/test/java/io/sinistral/proteus/test/controllers/GenericBeanTest.java new file mode 100644 index 0000000..32a9083 --- /dev/null +++ b/proteus-core/src/test/java/io/sinistral/proteus/test/controllers/GenericBeanTest.java @@ -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(); + } + +} \ No newline at end of file diff --git a/proteus-core/src/test/java/io/sinistral/proteus/test/server/AbstractEndpointTest.java b/proteus-core/src/test/java/io/sinistral/proteus/test/server/AbstractEndpointTest.java new file mode 100644 index 0000000..b23eb40 --- /dev/null +++ b/proteus-core/src/test/java/io/sinistral/proteus/test/server/AbstractEndpointTest.java @@ -0,0 +1,4 @@ +package io.sinistral.proteus.test.server; + +public class AbstractEndpointTest { +}