Updated readme.
diff --git a/README.md b/README.md index 8cce3aa..6724a12 100644 --- a/README.md +++ b/README.md
@@ -46,11 +46,11 @@ If installing the order based test client, run - go install $HOME/go/src/github.com/maps-booking-v3/testclient/orderBasedTestClient.go + go install $HOME/go/src/github.com/maps-booking-v3/testclient/orderClient.go Or the booking based test client, run - go install $HOME/go/src/github.com/maps-booking-v3/testclient/bookingBasedTestClient.go + go install $HOME/go/src/github.com/maps-booking-v3/testclient/bookingClient.go ### Installing the utilities with Windows Powershell @@ -84,26 +84,27 @@ If installing the order based test client, run - go install $env:HOME\go\src\github.com\maps-booking-v3\testclient\orderBasedTestClient.go + go install $env:HOME\go\src\github.com\maps-booking-v3\testclient\orderClient.go Or the booking based test client, run - go install $env:HOME\go\src\github.com\maps-booking-v3\testclient\bookingBasedTestClient.go + go install $env:HOME\go\src\github.com\maps-booking-v3\testclient\bookingClient.go ### Using the utilities -After following the install steps above an executable should now live in +After following the install steps above an executable should now live under the +path - $HOME/go/bin/main + $HOME/go/bin/ or - $env:HOME\go\bin\main.exe + $env:HOME\go\bin\ All available flags can be displayed using the '--help' flag. The currently accepted flags are: - bookingBasedTestClient.go + bookingClient.go -all_tests Whether to test all endpoints. -availability_feed string @@ -143,8 +144,10 @@ Leave blank to connect using http rather than https. -full_server_name string Fully qualified domain name. Same name used to sign CN. Only necessary if ca_file is specified and the base URL differs from the server address. + -output_to_terminal bool + Output to terminal rather than a file. - orderBasedTestClient.go + orderClient.go -all_tests Whether to test all endpoints syncronously, including ListOrders flow. -availability_feed string @@ -169,12 +172,14 @@ Your http server's address in the format of host:port (default "example.com:80") -service_feed string Absolute path to service feed required for all tests except health. Feeds can be in either json or pb3 format + -output_to_terminal bool + Output to terminal rather than a file. Example Usage: - bin/main -server_addr="localhost:443" -check_availability_test=true -output_dir="/tmp" -availability_feed="/tmp/test.json" + bin/bookingClient -server_addr="localhost:443" -check_availability_test=true -output_dir="/tmp" -availability_feed="/tmp/test.json" - bin/main -server_addr="external-dns:443" -all_tests=true -output_dir="/tmp" -availability_feed="/tmp/test.json" + bin/orderClient -server_addr="external-dns:443" -all_tests=true -output_dir="/tmp" -availability_feed="/tmp/test.json" -service_feed="/tmp/service.json" ### Testing