CTK Test Error with Mock SDK and BioService

Hi,

When running the Face Extract Template Success test from CTK app I get the following error:

SchemaValidator (Validates the response for mandatory attributes and correct values)
[$.response.response.others: is missing but it is required]

I stripped out everything and replaced my extractTemplate function to the following:

@Override
public Response extractTemplate(BiometricRecord sample, List modalitiesToExtract,
Map<String, String> flags) {
Response response = new Response<>();
LOGGER.info(“---- Extract Template ----”);
response.setStatusCode(200);
response.setResponse(sample);
return response;
}

I don’t see how I can add the others field to the response. I tried to initialize the List<BIR> segments field of the BiometricRecord object, but that didn’t seem to work.

1 Like