47
I Use This!
Activity Not Available

News

Analyzed about 1 year ago. based on code collected over 1 year ago.
Posted over 7 years ago
The Arquillian team is proud to announce the 1.0.0.CR2 release of the Arquillian Container Chameleon component! What is Arquillian Container Chameleon? The Chameleon container can quickly adapt to your needs of testing ... [More] against several containers (JBoss AS / JBoss EAP / WildFly / GlassFish) or even switching between different modes (Managed / Remote / Embedded) without requiring additional dependency configuration. Release details Component Arquillian Container Chameleon ...... [Less]
Posted over 7 years ago
Since we wrote this post we didn't laze around. Check our latest announcement. The Arquillian team is proud to announce the 1.3.0.Final release of the Arquillian Core component! Deployment Archives using Java SPI ... [More] Usually, you deploy into a container using @Deployment annotation. But now you can implement your own strategy to generate deployable archive. For this purpose we created simplified Java SPI org.jboss.arquillian.container.test.spi.client.deployment.AutomaticDeployment. The service must conform following signature: /** * Method called for generating the deployment configuration. * @param testClass of current running test. * @return Model object that contains all the information related to deployment configuration. */ DeploymentConfiguration generateDeploymentScenario(TestClass testClass); Moreover, you can use @BeforeDeployment method...... [Less]
Posted over 7 years ago
Since we wrote this post we didn't laze around. Check our latest announcement. The Arquillian team is proud to announce the 1.15.1 release of the Arquillian Cube Extension component! What is Arquillian Cube ... [More] Extension? With Arquillian Cube you can control the lifecycle of Docker images as part of the test lifecyle, either automatically or manually. This gives you the chance to scale up from a integration/functional test level all the way up to the system test level. Release details Component ...... [Less]
Posted over 7 years ago
Since we wrote this post we didn't laze around. Check our latest announcement. The Arquillian team is proud to announce the 0.0.9 release of the Smart Testing component! What is Smart Testing? Smart ... [More] Testing is a tool that speeds up the test running phase by reordering test execution plan to increase a probability of fail-fast execution and thus give you faster feedback about your project’s health. Release details Component Smart Testing ...... [Less]
Posted over 7 years ago
The Arquillian team is proud to announce the 1.4.0.Final release of the Arquillian Core component! Extended expression language in Arquillian configuration In arquillian.xml file, properties are always defined explicitly, as a ... [More] system property ${myproperty} or as an environment variable ${env.myenvironment}. But in both cases values are set before test execution. With this release, you can implement your own way of resolving values, not just system properties or environment variables. You need to register a new Arquillian service in ExtensionBuilder and it must conform following signature: interface PropertyResolver { String getValue(String key); } key attribute is the expression set in arquillian.xml file as property...... [Less]
Posted over 7 years ago
The Arquillian team is proud to announce the 1.15.2 release of the Arquillian Cube Extension component! What is Arquillian Cube Extension? With Arquillian Cube you can control the lifecycle of Docker images as part of the ... [More] test lifecyle, either automatically or manually. This gives you the chance to scale up from a integration/functional test level all the way up to the system test level. Release details Component Arquillian Cube Extension ...... [Less]
Posted over 7 years ago
The Arquillian team is proud to announce the 0.0.10 release of the Smart Testing component! Excluded categories specification Smart Testing is now supporting the exclusion of test categories. In this release we introduced the ... [More] excludedCategories parameter for the categorized strategy. When using this parameter, you specify the test categories you want to skip from execution, as you would in the excludedGroups parameter of the maven-surefire-plugin. The excludedCategories works well with both JUnit 4 and JUnit 5 categories system (e.g the @Category and @Tag annotations) This release also removes the matchAll and reversed parameters from the categorized strategy, as the...... [Less]
Posted over 7 years ago
Since we wrote this post we didn't laze around. Check our latest announcement. The Arquillian team is proud to announce the 3.1.2 release of the ShrinkWrap Resolver component! What is ShrinkWrap Resolver? ... [More] The ShrinkWrap Resolvers project provides a Java API to obtain artifacts from a repository system. This is handy to include third party libraries available in any Maven repository in your test archive. ShrinkWrap Resolvers additionally allow you to reuse all the configuration you've already specified in the Maven build file, making packaging of an application archive much easier job. Release details ...... [Less]
Posted over 7 years ago
The Arquillian team is proud to announce the 1.3.0.Final release of the Arquillian Core component! Deployment Archives using Java SPI Usually, you deploy into a container using @Deployment annotation. But now you can implement ... [More] your own strategy to generate deployable archive. For this purpose we created simplified Java SPI org.jboss.arquillian.container.test.spi.client.deployment.AutomaticDeployment. The service must conform following signature: /** * Method called for generating the deployment configuration. * @param testClass of current running test. * @return Model object that contains all the information related to deployment configuration. */ DeploymentConfiguration generateDeploymentScenario(TestClass testClass); Moreover, you can use @BeforeDeployment method annotation which allows you to modify the archive before it is deployed. The method...... [Less]
Posted over 7 years ago
Since we wrote this post we didn't laze around. Check our latest announcement. The Arquillian team is proud to announce the 0.0.8 release of the Smart Testing component! Test method selection In all previous ... [More] versions of the Smart Testing tool, by using the selecting mode, it was possible to select the whole test classes only. In this release, we have introduced a possibility of selecting on the test method level. This new feature can be applied with two strategies: failed and categorized. In case of the failed strategy – if you have a class with 10 test methods and only one of them...... [Less]