Tag Archives: unit testing

Akka : Testing your Actors

Introduction Akka is a great Scala and Java framework implementing the “Actor” programming model. It allows developers to easily build concurrent systems. The main ideas behind the Actor model are: The work is divided into small tasks An Actor is … Continue reading

Développement web , , ,

Unit testing tricks for Play 2.0 and Ebean

Basic Ebean model testing When you want to execute some tests that interact with your Models, you need to use a Play FakeApplication. This is described in the Java section of the Play 2.0 documentation. Here is how the code … Continue reading

Développement web , , , ,