Skip to content

Commit

Permalink
Setting testable to false for deployments in TCK
Browse files Browse the repository at this point in the history
Signed-off-by: Rostislav Svoboda <rsvoboda@redhat.com>
  • Loading branch information
rsvoboda committed Aug 15, 2018
1 parent ed8b137 commit 45e96cd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Expand Up @@ -44,7 +44,7 @@
*/
public class DelegateProcedureSuccessfulTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(DelegateCheck.class, DelegationTarget.class);
}
Expand Down
Expand Up @@ -44,7 +44,7 @@
*/
public class HealthCheckResponseAttributesTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(CheckWithAttributes.class);
}
Expand Down
Expand Up @@ -45,7 +45,7 @@
*/
public class MultipleProceduresFailedTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(FailedCheck.class, SuccessfulCheck.class);
}
Expand Down
Expand Up @@ -40,7 +40,7 @@
*/
public class NoProcedureSuccessfulTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createEmptyWarFile();
}
Expand Down
Expand Up @@ -43,7 +43,7 @@
*/
public class SingleProcedureFailedTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(FailedCheck.class);
}
Expand Down
Expand Up @@ -43,7 +43,7 @@
*/
public class SingleProcedureSuccessfulTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(SuccessfulCheck.class);
}
Expand Down
Expand Up @@ -49,7 +49,7 @@
*/
public class WithQualifierTest extends SimpleHttp {

@Deployment
@Deployment(testable = false)
public static Archive getDeployment() throws Exception {
return createWarFileWithClasses(CheckWithHealthQualifier.class);
}
Expand Down

0 comments on commit 45e96cd

Please sign in to comment.