Skip to content

Commit

Permalink
Allowing params to be passed in
Browse files Browse the repository at this point in the history
  • Loading branch information
ebekker committed Jan 18, 2017
1 parent ac11158 commit 671a1ab
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/client/Tug.Client-tests/test-localhost5000.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
@ECHO THIS=%THIS%
@ECHO THIS_DIR=%THIS_DIR%

dotnet test %THIS_DIR% -- /server_url=http://localhost:5000/
dotnet test %THIS_DIR% %* -- /server_url=http://localhost:5000/

@ENDLOCAL
2 changes: 1 addition & 1 deletion test/client/Tug.Client-tests/test-with-fiddler.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
@ECHO THIS=%THIS%
@ECHO THIS_DIR=%THIS_DIR%

dotnet test %THIS_DIR% -- /proxy_url="http://localhost:8888"
dotnet test %THIS_DIR% %* -- /proxy_url="http://localhost:8888"

@ENDLOCAL
10 changes: 10 additions & 0 deletions test/server/Tug.Server-itests/test-framework-net462.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@SETLOCAL
@SET THIS=%0
@SET THIS_DIR=%~dp0

@ECHO THIS=%THIS%
@ECHO THIS_DIR=%THIS_DIR%

dotnet test %THIS_DIR% %* -f net462 %*

@ENDLOCAL

0 comments on commit 671a1ab

Please sign in to comment.