createDomainEntityTest method

void createDomainEntityTest(
  1. String pathTestPage,
  2. String featureName,
  3. String pageName,
  4. List<Map<String, String>> resultModelUnitTest,
)

Implementation

void createDomainEntityTest(
  String pathTestPage,
  String featureName,
  String pageName,
  List<Map<String, String>> resultModelUnitTest,
) {
  final path = join(pathTestPage, 'domain', 'entities');
  DirectoryHelper.createDir(path, recursive: true);
  touch(join(path, '.gitkeep'), create: true);

  StatusHelper.generated(join(path, '.gitkeep'));
}