mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-02 15:28:50 +01:00
17 lines
443 B
Ruby
17 lines
443 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
$serverName = 'MSASPdotNETWebServices'
|
|
$serverBase = 'http://www.mssoapinterop.org/asmx/simple.asmx'
|
|
$serverGroupB = 'http://www.mssoapinterop.org/asmx/simpleB.asmx'
|
|
|
|
require 'clientBase'
|
|
|
|
drvBase = SOAP::RPC::Driver.new($serverBase, InterfaceNS)
|
|
methodDefBase(drvBase)
|
|
|
|
drvGroupB = SOAP::RPC::Driver.new($serverGroupB, InterfaceNS)
|
|
methodDefGroupB(drvGroupB)
|
|
|
|
doTestBase(drvBase)
|
|
doTestGroupB(drvGroupB)
|
|
submitTestResult
|