Skip to content

Commit

Permalink
ARQ-283, configuration via arquillian.xml enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
kpiwko committed Sep 23, 2010
1 parent bdf8f65 commit 483ece3
Show file tree
Hide file tree
Showing 16 changed files with 513 additions and 475 deletions.
2 changes: 2 additions & 0 deletions extensions/selenium/pom.xml
Expand Up @@ -317,6 +317,8 @@
<configuration>
<systemPropertyVariables>
<arquillian.selenium.server.enable>true</arquillian.selenium.server.enable>
<!-- this serves to test precedence only -->
<arquillian.selenium.speed>0</arquillian.selenium.speed>
</systemPropertyVariables>
<includes>
<include>org/jboss/arquillian/selenium/example/DefaultSeleniumTestCase.class</include>
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.arquillian.selenium.meta;
package org.jboss.arquillian.selenium;

import java.security.AccessController;
import java.security.PrivilegedActionException;
Expand Down Expand Up @@ -97,15 +97,4 @@ else if (t instanceof IllegalArgumentException)
}
}

static String getProperty(String key, String defaultValue)
{
String value = getProperty(key);
if (value == null)
{
return defaultValue;
}

return value;
}

}

0 comments on commit 483ece3

Please sign in to comment.