Create a org.apache.storm.tuple.Tuple for use with testing. @param values the values to appear in the tuple
(List<Object> values)
| 640 | * @param values the values to appear in the tuple |
| 641 | */ |
| 642 | public static Tuple testTuple(List<Object> values) { |
| 643 | return testTuple(values, new MkTupleParam()); |
| 644 | } |
| 645 | |
| 646 | /** |
| 647 | * Create a {@link org.apache.storm.tuple.Tuple} for use with testing. |
no test coverage detected