| java.lang.Object com.google.gwt.junit.client.Trial
Trial | public class Trial implements IsSerializable(Code) | | The result of a single trial-run of a single benchmark method. Each Trial
contains the results of running a benchmark method with one set of
values for its parameters. TestResults for a method will contain Trials
for all permutations of the parameter values. For test methods without
parameters, there is only 1 trial result.
|
runTimeMillis | double runTimeMillis(Code) | | |
Trial | public Trial(Map<String, String> variables, double runTimeMillis, ExceptionWrapper exceptionWrapper)(Code) | | Creates a new Trial.
Parameters: runTimeMillis - The amount of time spent executing the test Parameters: exceptionWrapper - The wrapped getException thrown by the the lasttest, or null if the last testcompleted successfully. |
getRunTimeMillis | public double getRunTimeMillis()(Code) | | |
getVariables | public Map<String, String> getVariables()(Code) | | Returns the names and values of the variables used in the test. If there
were no variables, the map is empty.
|
setRunTimeMillis | public void setRunTimeMillis(double runTimeMillis)(Code) | | |
|
|