()
| 12 | public class AUComposition { |
| 13 | AtUnitExample1 testObject = new AtUnitExample1(); |
| 14 | @Test |
| 15 | boolean tMethodOne() { |
| 16 | return testObject.methodOne() |
| 17 | .equals("This is methodOne"); |
| 18 | } |
| 19 | @Test |
| 20 | boolean tMethodTwo() { |
| 21 | return testObject.methodTwo() == 2; |