Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

22
unit-tests.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
REM Prepare environment for Thelia unit tests
echo [INFO] Clearing test cache
php Thelia cache:clear --env=test
echo [INFO] Downloading vendors
call composer install --prefer-dist
echo [INFO] Refreshing Module list
php Thelia module:refresh
echo [INFO] Activating Hook Test Module
php Thelia module:activate HookTest
call bin\phpunit %*
echo [INFO] Desactivating Hook Test Module
php Thelia module:deactivate HookTest
echo [INFO] Removing hook test template
rd templates\frontOffice\hooktest /s /q