Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 18   Methods: 2
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
EndVerifyStep.java - 100% 100% 100%
coverage
 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    }