Christopher Kobusch 45a3fe05f5
Add Xojo client generator (#15194)
* Add Xojo client

* Add Xojo client generator

* Add Xojo client generator

* hide generation timestamp for xojo samples

---------

Co-authored-by: William Cheng <wing328hk@gmail.com>
2023-05-03 14:06:40 +08:00

19 lines
537 B
Plaintext

#tag Class
Protected Class App
Inherits ConsoleApplication
#tag Event
Function Run(args() as String) As Integer
#Pragma Unused args
Dim m As New Mock
m.testPetApi("http://localhost:4010") 'original basePath: http://petstore.swagger.io/v2
m.testStoreApi("http://localhost:4010") 'original basePath: http://petstore.swagger.io/v2
m.testUserApi("http://localhost:4010") 'original basePath: http://petstore.swagger.io/v2
End Function
#tag EndEvent
#tag ViewBehavior
#tag EndViewBehavior
End Class
#tag EndClass