Let’s take a look at how we can test GORM formulas in Grails. The code for this post is part of my PomoTimer project and can befound on GitHub. The domain class We have a domain class Project that models a project that one isworking on when doing a particular work session. It records the name ofthe project (“Writing a blog post”), a status (“active”, “completed”), acreation time, the total time spent on this project and the user theproject belongs to. The total time is a derived...