Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I write tests for a play framework module I am creating? I created the module using play new-module myModule but could not find anything in the generated scripts to create or run tests. What is the standard way that people write tests for play modules?

share|improve this question

1 Answer

up vote 2 down vote accepted

One way is to use the same path as the examples that come with play itself:

your-module
|- samples-and-tests
   |- demoapp
      |- test
         |- ApplicationTest.java
         |- BasicTest.java

Also look inside the Scala module, it uses the same approach and has one app called just-test-cases.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.