All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fit.specify.ColumnFixtureUnderTestWithArgs Maven / Gradle / Ivy

Go to download

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 fit.specify;

import fit.ColumnFixture;

public class ColumnFixtureUnderTestWithArgs extends ColumnFixture {
    public int third = 0;
    
    public int sum() {
        return Integer.parseInt(getArgs()[0]) + 
            Integer.parseInt(getArgs()[1]) + 
            third;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy