|
Revision 1520, 434 bytes
(checked in by nahi, 4 years ago)
|
removed svn:executable
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
#!/usr/bin/env ruby |
|---|
| 2 |
|
|---|
| 3 |
$serverName = 'Phalanx' |
|---|
| 4 |
|
|---|
| 5 |
$serverBase = 'http://www.phalanxsys.com/ilabA/typed/target.asp' |
|---|
| 6 |
$serverGroupB = 'http://www.phalanxsys.com/ilabB/typed/target.asp' |
|---|
| 7 |
|
|---|
| 8 |
require 'clientBase' |
|---|
| 9 |
|
|---|
| 10 |
drvBase = SOAP::RPC::Driver.new($serverBase, InterfaceNS) |
|---|
| 11 |
methodDefBase(drvBase) |
|---|
| 12 |
|
|---|
| 13 |
drvGroupB = SOAP::RPC::Driver.new($serverGroupB, InterfaceNS) |
|---|
| 14 |
methodDefGroupB(drvGroupB) |
|---|
| 15 |
|
|---|
| 16 |
doTestBase(drvBase) |
|---|
| 17 |
doTestGroupB(drvGroupB) |
|---|
| 18 |
submitTestResult |
|---|