Home | History | Annotate | Download | only in testtype

Lines Matching refs:shardCount

926     public Collection<IRemoteTest> split(int shardCount) {
927 if (shardCount < 1) {
943 // ignore shardCount when shard unit is class;
945 shardCount = testObjects.size();
978 i = (i + 1) % shardCount;
1029 public IRemoteTest getTestShard(int shardCount, int shardIndex) {
1037 HostTest test = createTestShard(shardCount, shardIndex);
1064 private HostTest createTestShard(int shardCount, int shardIndex) {
1070 if (i % shardCount == shardIndex) {