12.1 Unit Testing - Reference Documentation
Authors: Andres Almiray
Version: 1.2.0
12.1 Unit Testing
Unit testing are tests at the "unit" level. In other words you are testing individual methods or blocks of code without considering for surrounding infrastructure. The following is an unit test created using the default templateimport griffon.test.*class SomeUnitTests extends GriffonUnitTestCase { protected void setUp() { super.setUp() } protected void tearDown() { super.tearDown() } void testSomething() { } }