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

fitlibrary.specify.ArrayFixtureUnderTest2 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 fitlibrary.specify;

public class ArrayFixtureUnderTest2 extends fitlibrary.ArrayFixture {
	public ArrayFixtureUnderTest2() throws Exception {
		super(new Object[]{
    			new MockCollection(1,"one"),
				new MockCollection(1,"two"),
				new MockCollection(2,"two"),
				new Some()});
	}
	public static class Some {
		public String getSome() {
			return "one";
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy