Upload files to "java/base"

This commit is contained in:
2026-04-13 10:38:03 +03:00
parent 9a225ab16a
commit b47fd19096
5 changed files with 514 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package base;
/**
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
*/
public abstract class BaseChecker {
protected final TestCounter counter;
protected BaseChecker(final TestCounter counter) {
this.counter = counter;
}
public ExtendedRandom random() {
return counter.random();
}
public int mode() {
return counter.mode();
}
}