public void Reset()
        {
            int           savePageSize     = 500;
            List <string> noUpsertEntities = null;
            List <string> noUpdateEntities = null;

            systemUnderTest = new DataCrmStoreWriter(MockLogger.Object, MockEntityRepo.Object, savePageSize, noUpsertEntities, noUpdateEntities);

            FluentActions.Invoking(() => systemUnderTest.Reset())
            .Should()
            .NotThrow();
        }