createPresentationTest method
void
createPresentationTest()
Implementation
void createPresentationTest(
String pathTestPage,
String featureName,
String pageName,
Map json2DartMap,
) {
final dirs = [
'bloc',
'cubit',
'pages',
'widgets',
];
for (var dir in dirs) {
final path = join(pathTestPage, 'presentation', dir);
DirectoryHelper.createDir(path);
touch(join(path, '.gitkeep'), create: true);
}
createPresentationCubitTest(
join(pathTestPage, 'presentation', 'cubit'),
featureName,
pageName,
json2DartMap,
);
}