|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| TestSuiteFactoryImpl.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /** | |
| 2 | * | |
| 3 | */ | |
| 4 | package com.agical.rdoc.core.model.test.builder; | |
| 5 | ||
| 6 | import com.agical.rdoc.core.model.test.TestSuiteFactory; | |
| 7 | import com.agical.rdoc.core.model.test.impl.TestSuiteImpl; | |
| 8 | ||
| 9 | final class TestSuiteFactoryImpl implements TestSuiteFactory { | |
| 10 | 26 | public TestSuite create(Object suite, String name) { |
| 11 | 26 | TestSuiteImpl testSuiteImpl = new TestSuiteImpl(name, suite.getClass()); |
| 12 | 26 | return testSuiteImpl; |
| 13 | } | |
| 14 | } |
|
||||||||||