|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| EndVerifyStep.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rmock.core.strategy.impl; | |
| 2 | ||
| 3 | import com.agical.rmock.core.Verifiable; | |
| 4 | import com.agical.rmock.core.strategy.TestStep; | |
| 5 | ||
| 6 | public class EndVerifyStep implements TestStep { | |
| 7 | ||
| 8 | private Verifiable verifiable; | |
| 9 | ||
| 10 | 522 | public void run() throws Throwable { |
| 11 | 522 | verifiable.endVerify(); |
| 12 | } | |
| 13 | ||
| 14 | 2172 | public void setVerifiable(Verifiable verifiable) { |
| 15 | 2172 | this.verifiable = verifiable; |
| 16 | } | |
| 17 | ||
| 18 | } |
|
||||||||||