Package jakarta.nosql.tck.factories
package jakarta.nosql.tck.factories
Provides supplier classes for generating test data for NoSQL operations.
The supplier classes in this package are responsible for supplying entities or lists of entities for parameterized tests. These classes follow a consistent naming convention:
VehicleSupplier
: Supplies a single instance of theVehicle
entity for tests.VehicleListSupplier
: Supplies a list ofVehicle
entities for batch tests.PersonSupplier
: Supplies a single instance of thePerson
entity for tests.PersonListSupplier
: Supplies a list ofPerson
entities for batch tests.
The naming convention used is as follows:
- If the supplier returns a single entity, it is named
EntitySupplier
, whereEntity
is the name of the entity (e.g.,VehicleSupplier
for theVehicle
entity). - If the supplier returns a list of entities, it is named
EntityListSupplier
, whereEntity
is the name of the entity (e.g.,VehicleListSupplier
for a list ofVehicle
entities).
These supplier classes are designed to provide the necessary test data for various NoSQL operations across different database types.
- Since:
- 1.0.0
- See Also: