PageRenderTime 34ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/testability-explorer/runReport.sh

http://testability-explorer.googlecode.com/
Shell | 11 lines | 6 code | 3 blank | 2 comment | 2 complexity | 0de9109d8e5903fd8ecc4baa02f0c283 MD5 | raw file
Possible License(s): Apache-2.0
  1. #!/bin/sh
  2. TE_ARGS="-jar target/core-1.3.2-SNAPSHOT-with-deps.jar"
  3. #TE_ARGS="$TE_ARGS -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,suspend=y,server=y"
  4. TE_ARGS="$TE_ARGS -cp target/core-1.3.2-SNAPSHOT.jar"
  5. TE_ARGS="$TE_ARGS -print html"
  6. TE_ARGS="$TE_ARGS -srcFileLineUrl http://code.google.com/p/testability-explorer/source/browse/trunk/core/src/main/java/{path}.java#{line}"
  7. TE_ARGS="$TE_ARGS -srcFileUrl http://code.google.com/p/testability-explorer/source/browse/trunk/core/src/main/java/{path}.java"
  8. mvn package -Dsurefire.useFile=false && java ${TE_ARGS} > report.html && open report.html