Easy Unit Testing - Web Mozarts - 0 views
-
Contrary to PHPUnit, lime tests are written in a procedural way.
- ...7 more annotations...
-
@Test A test case @Before Executed before each test case @After Executed after each test case @BeforeAll Executed once before all test cases @AfterAll Executed once after all test cases
-
You can create stubs for interfaces, classes or abstract classes. You can even create stubs for non-existing classes, which is very convenient if you develop test-driven.
-
I personally think that tests can be written in a much more concise and readable way with sfLimeExtraPlugin.