fitlibrary.specify.ResetCounts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitlibrary Show documentation
Show all versions of fitlibrary Show documentation
FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.
The newest version!
/*
* Copyright (c) 2006 Rick Mugridge, www.RimuResearch.com
* Released under the terms of the GNU General Public License version 2 or later.
*/
package fitlibrary.specify;
import fit.Parse;
/**
* Clear the counts for the inner fixtures to test fit.Summary.
*/
public class ResetCounts extends fit.Fixture {
@Override
public void doTable(@SuppressWarnings("unused") Parse table) {
counts.right = 0;
counts.wrong = 0;
counts.exceptions = 0;
counts.ignores = 0;
}
}