|
Revision 1592, 410 bytes
(checked in by nahi, 3 years ago)
|
updated
|
- 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 = 'ApacheSOAP2.2' |
|---|
| 4 |
$serverBase = 'http://nagoya.apache.org:5049/soap/servlet/rpcrouter' |
|---|
| 5 |
$serverGroupB = 'None' |
|---|
| 6 |
|
|---|
| 7 |
require 'clientBase' |
|---|
| 8 |
|
|---|
| 9 |
drvBase = SOAP::RPC::Driver.new($serverBase, InterfaceNS) |
|---|
| 10 |
methodDefBase( drvBase ) |
|---|
| 11 |
|
|---|
| 12 |
#drvGroupB = SOAP::RPC::Driver.new($serverGroupB, InterfaceNS) |
|---|
| 13 |
#methodDefGroupB( drvGroupB ) |
|---|
| 14 |
|
|---|
| 15 |
doTestBase( drvBase ) |
|---|
| 16 |
#doTestGroupB( drvGroupB ) |
|---|
| 17 |
submitTestResult |
|---|