Altered to run in sequence on the integration test

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3470 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2008-02-05 16:04:35 +00:00
parent 78ba3ccab8
commit b1bbafd416
8 changed files with 33 additions and 10 deletions

View File

@@ -12,6 +12,7 @@ require 'test/unit'
require 'test/unit/ui/console/testrunner'
require 'test/unit/testsuite'
#include the integration test cases
require 'login_tests'
require 'exportdatatests'
#includes
@@ -47,7 +48,17 @@ include Watir
class WebMipIntegrationTests
def self.suite
suite = Test::Unit::TestSuite.new('webMIP Integration tests')
suite << Test_01_export_data.suite
suite << Test_01_login_screen.suite
suite << Test_02_enquiry.suite
suite << Test_03_housings_screen.suite
suite << Test_04_drawings_screen.suite
suite << Test_05_base_screen.suite
suite << Test_06_addon_screen.suite
suite << Test_07_export_data.suite
suite << Test_08_modules_screen.suite
suite << Test_09_MIPADMIN_party_management.suite
suite << Test_10_SUPPADMIN_party_management.suite
suite << Test_11_edit_parties.suite
#copy the line above, inserting your test to add
#more testcases into the integration test suite
return suite