Author: carlos
Date: Sat Jul 11 00:58:30 2009
New Revision: 793160
URL: http://svn.apache.org/viewvc?rev=793160&view=rev
Log:
Add a first sample of multienvironment testing using Selenium Grid
Added:
continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
(with props)
Added: continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml?rev=793160&view=auto
==============================================================================
--- continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
(added)
+++ continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
Sat Jul 11 00:58:30 2009
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you 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.
+-->
+
+<suite name="ContinuumTestMultiEnvironment" verbose="1" parallel="tests" thread-count="2">
+ <listeners>
+ <listener class-name="org.apache.continuum.web.test.listener.CaptureScreenShotsListener"/>
+ </listeners>
+ <test name="safari4Windows">
+ <parameter name="browser" value="Safari 4 on Windows"/>
+ <groups>
+ <run>
+ <include name="setup" /> <!-- required to setup Selenium -->
+ <include name="login" />
+ </run>
+ </groups>
+ <packages>
+ <package name="org.apache.continuum.web.test" />
+ </packages>
+ </test>
+ <test name="firefox3Linux">
+ <parameter name="browser" value="Firefox 3 on Linux"/>
+ <groups>
+ <run>
+ <include name="setup" /> <!-- required to setup Selenium -->
+ <include name="login" />
+ </run>
+ </groups>
+ <packages>
+ <package name="org.apache.continuum.web.test" />
+ </packages>
+ </test>
+</suite>
Propchange: continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: continuum/trunk/continuum-webapp-test/src/test/testng/config/testng-multienvironment.xml
------------------------------------------------------------------------------
svn:mime-type = text/plain
|