How to test with elevator apps?

How to do testing and is there something similar like Rack :: Test with Ruby frameworks?

+2


source to share


3 answers


You can use Specs, ScalaTest and JUnit (and any other java test framework), some examples in the new wiki.



Read this!

+1


source


I don't know much about ruby, so I might not understand. But what about Jitr ?

Jitr (pronounced "jitter") is a JUnit Integrated Test Runner. This allows your web application to run integration tests easily against a lightweight web container in the same JVMs as your tests.



You can use it with JUnit 4 annotation @RunWith

. The Scala's: @RunWith(classOf[Jitr])

.

0


source


This might be useful, it's on the elevator wiki pages. There are examples of using Junit, Scalatest and and Specs.

How to: Unit test remove fragments with a registered user

0


source







All Articles