Unit test for Aggregate.getNext() using a count aggregate with string types
()
| 129 | * Unit test for Aggregate.getNext() using a count aggregate with string types |
| 130 | */ |
| 131 | @Test public void countStringAggregate() throws Exception { |
| 132 | Aggregate op = new Aggregate(scan2, 1, 0, |
| 133 | Aggregator.Op.COUNT); |
| 134 | op.open(); |
| 135 | count.open(); |
| 136 | TestUtil.matchAllTuples(count, op); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Unit test for Aggregate.getNext() using a count aggregate with string types |
nothing calls this directly
no test coverage detected