
Resources.FitNesseRoot.FitNesse.SuiteAcceptanceTests.SuiteFixtureTests.SuiteColumnFixtureSpec.TestArraysInColumnFixture.content.txt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
!3 You can put arrays of objects into ColumnFixture fixtures.
!|fitnesse.fixtures.ComplexAddFixture|
|a|b|sum?|
|1,2|3,4|4,6|
{{{
public class ComplexAddFixture extends ColumnFixture
{
public int[] a;
public int[] b;
public int[] sum() {
return new int[] {a[0]+b[0], a[1]+b[1]};
}
}
}}}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy