use of gov.cms.ab2d.common.model.Contract in project ab2d by CMSgov.
the class ContractServiceImplTest method before.
@BeforeEach
private void before() {
contract = new Contract();
contract.setContractName("Test Contract");
contract.setContractNumber("NATTE");
contract = contractRepo.save(contract);
dataSetup.queueForCleanup(contract);
}
Aggregations