HBASE-26919 Rewrite the counting rows part in TestFromClientSide4 (#4314)

Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
This commit is contained in:
Duo Zhang 2022-04-03 22:42:49 +08:00 committed by GitHub
parent c4ff355915
commit 4e12eee531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 8 deletions

View File

@ -59,6 +59,8 @@ import org.junit.runners.Parameterized;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hbase.thirdparty.com.google.common.collect.Iterables;
/**
* Run tests that use the HBase clients; {@link Table}.
* Sets up the HBase mini cluster once at start and runs through all client tests.
@ -1027,10 +1029,7 @@ public class TestFromClientSide4 extends FromClientSideBase {
Scan scan = new Scan();
scan.addFamily(CONTENTS_FAMILY);
try (ResultScanner scanner = table.getScanner(scan)) {
int nbRows = 0;
for (@SuppressWarnings("unused") Result row : scanner) {
nbRows++;
}
int nbRows = Iterables.size(scanner);
assertEquals(NB_BATCH_ROWS, nbRows);
}
}
@ -1056,10 +1055,7 @@ public class TestFromClientSide4 extends FromClientSideBase {
Scan scan = new Scan();
scan.addFamily(CONTENTS_FAMILY);
try (ResultScanner scanner = table.getScanner(scan)) {
int nbRows = 0;
for (@SuppressWarnings("unused") Result row : scanner) {
nbRows++;
}
int nbRows = Iterables.size(scanner);
assertEquals(NB_BATCH_ROWS * 10, nbRows);
}
}