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:

The naming convention used is as follows:

  • If the supplier returns a single entity, it is named EntitySupplier, where Entity is the name of the entity (e.g., VehicleSupplier for the Vehicle entity).
  • If the supplier returns a list of entities, it is named EntityListSupplier, where Entity is the name of the entity (e.g., VehicleListSupplier for a list of Vehicle 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: