-
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.
Updates required for upgrading RESTEasy. Minor change to a module.xml…
… file to match what is currently in WildFly. Disable a test which requires a new version of WildFly to be released. Signed-off-by: James R. Perkins <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -22,11 +22,14 @@ | |
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.resteasy.microprofile.config.ConfigConfiguration; | ||
import org.jboss.resteasy.microprofile.test.config.resource.MicroProfileConfigResource; | ||
import org.jboss.resteasy.microprofile.test.config.resource.TestConfigApplication; | ||
import org.jboss.resteasy.microprofile.test.util.TestEnvironment; | ||
import org.jboss.resteasy.spi.config.ConfigurationFactory; | ||
import org.jboss.shrinkwrap.api.asset.EmptyAsset; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.junit.Assert; | ||
import org.junit.Ignore; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
|
@@ -37,11 +40,13 @@ | |
* @author <a href="mailto:[email protected]">James R. Perkins</a> | ||
*/ | ||
@RunWith(Arquillian.class) | ||
@Ignore("This breaks with WildFly 27 and RESTEasy 6.2.3.Final. Once WildFly 28 is released, this can be re-enabled.") | ||
public class ConfigConfigurationFactoryTest { | ||
|
||
@Deployment | ||
public static WebArchive deployment() { | ||
return TestEnvironment.createWar(ConfigConfigurationFactoryTest.class) | ||
.addClasses(TestConfigApplication.class, MicroProfileConfigResource.class) | ||
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml"); | ||
} | ||
|
||
|