|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| TestStructureServiceFactory.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.model.test.service; | |
| 2 | ||
| 3 | import com.agical.rmock.core.configuration.RMockServiceFactory; | |
| 4 | ||
| 5 | public class TestStructureServiceFactory implements RMockServiceFactory { | |
| 6 | ||
| 7 | 2 | public Object createService() { |
| 8 | 2 | return new TestStructureServiceImpl(); |
| 9 | } | |
| 10 | ||
| 11 | 2 | public boolean canCreateService() { |
| 12 | 2 | return true; |
| 13 | } | |
| 14 | ||
| 15 | 3 | public Class getServiceType() { |
| 16 | 3 | return TestStructureService.class; |
| 17 | } | |
| 18 | } |
|
||||||||||