Builder

public abstract class Builder

Builder for TestTableFile.

Constructors

Link copied to clipboard
public void TestTableFile.Builder()

Functions

Link copied to clipboard
public abstract TestTableFile build()
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder clearComment()
Clears the value of comment field.
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder clearParameterNames()
Clears the value of parameterNames field.
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder clearTestMethod()
Clears the value of testMethod field.
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder clearTestTable()
Clears the value of testTable field.
Link copied to clipboard
public abstract TestTableFile.Builder comment(String comment)
Setter for comment.
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder parameterNames(Array<String> parameterNames)
public abstract TestTableFile.Builder parameterNames(List<String> parameterNames)
Setter for parameterNames.
Link copied to clipboard
public abstract TestTableFile.Builder testMethod(String testMethod)
Setter for testMethod.
Link copied to clipboard
@CanIgnoreReturnValue()
public TestTableFile.Builder testTable(Array<TestTableItem> testTable)
public abstract TestTableFile.Builder testTable(List<TestTableItem> testTable)
Setter for testTable.
@CanIgnoreReturnValue()
public TestTableFile.Builder testTable(Array<TestTableItem.Builder> testTableBuilders)
Setter for testTable builder.