Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 394 Bytes

TESTING.md

File metadata and controls

21 lines (14 loc) · 394 Bytes

Testing

How to run test?

mvn test

How to run specific test only?

mvn test -Dtest=BoltTest#open_and_close -DfailIfNoTests=false

or if a shell interpret # as part of glob expression:

noglob mvn test -Dtest=BoltTest#open_and_close -DfailIfNoTests=false

More examples here.