![JAR search and dependency download from the Maven repository](/logo.png)
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 smartrics-RestFixture-LiveDoc Show documentation
Show all versions of smartrics-RestFixture-LiveDoc Show documentation
FitNesse tests documenting the RestFixture
!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