Clover coverage report - EasyMock 2.2
Coverage timestamp: Mo Apr 17 2006 21:21:22 CEST
file stats: LOC: 17   Methods: 2
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ThrowableWrapper.java - 100% 100% 100%
coverage
 1    /*
 2    * Copyright (c) 2001-2006 OFFIS, Tammo Freese.
 3    * This program is made available under the terms of the MIT License.
 4    */
 5    package org.easymock.internal;
 6   
 7    public class ThrowableWrapper extends Throwable {
 8    private final Throwable throwable;
 9   
 10  77 public ThrowableWrapper(final Throwable throwable) {
 11  77 this.throwable = throwable;
 12    }
 13   
 14  77 public Throwable getThrowable() {
 15  77 return throwable;
 16    }
 17    }