Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
ARQ-1542 Add integration testing to portal extension
Browse files Browse the repository at this point in the history
 - For Wildfly, AS7 and Jetty
  • Loading branch information
kenfinnigan committed Oct 23, 2013
1 parent a742556 commit 6ad121a
Show file tree
Hide file tree
Showing 13 changed files with 1,149 additions and 59 deletions.
4 changes: 0 additions & 4 deletions build-resources/pom.xml
Expand Up @@ -76,10 +76,6 @@
<optimize>true</optimize>
<compilerVersion>1.7</compilerVersion>
<fork>true</fork>
<compilerArguments>
<source>1.6</source>
<target>1.6</target>
</compilerArguments>
<argLine>-Xmx512M</argLine>
<executable>${JAVA_HOME}/bin/javac</executable>
</configuration>
Expand Down
26 changes: 26 additions & 0 deletions build-resources/src/main/java/category/Failing.java
@@ -0,0 +1,26 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package category;

/**
* Currently failing test that should work when issue resolved.
*
* @author <a href="http://community.jboss.org/people/kenfinni">Ken Finnigan</a>
*/
public interface Failing {

}
27 changes: 27 additions & 0 deletions build-resources/src/main/java/category/None.java
@@ -0,0 +1,27 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package category;

/**
* This is placeholder which should not match any test
*
* @deprecated should not be used directly
*/
@Deprecated
public interface None {

}
25 changes: 25 additions & 0 deletions build-resources/src/main/java/category/RequiresJSF.java
@@ -0,0 +1,25 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package category;

/**
* Identifies a test as requiring the JSF Runtime to succeed.
*
* @author <a href="http://community.jboss.org/people/kenfinni">Ken Finnigan</a>
*/
public interface RequiresJSF {
}

0 comments on commit 6ad121a

Please sign in to comment.