/
AleksWork
/
diary_plants
Обзор
Документация
Войти
/
AleksWork
/
diary_plants
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
make/tests.mk
57 строк
2 KB
AlexeySerov
Add Unit console test for incidents command
27 май 2026, 13:41
27 май 2026, 13:41
f487fd9
Код
Авторство
О чём код?
PHPUNIT = php bin/phpunit test: app-test entity-test model-test exception-test vo-test service-test event-test cli-test form-test web-test infra-test func-test repo-test entity-test: @echo "--- Running Entity Tests ---" $(PHPUNIT) tests/Unit/Domain/Entity model-test: @echo "--- Running Model Tests ---" $(PHPUNIT) tests/Unit/Domain/Model vo-test: @echo "--- Running Value Object Tests ---" $(PHPUNIT) tests/Unit/Domain/ValueObject service-test: @echo "--- Running Service Tests ---" $(PHPUNIT) tests/Unit/Domain/Service exception-test: @echo "--- Running Exception Tests ---" $(PHPUNIT) tests/Unit/Domain/Exception event-test: @echo "--- Running Event Tests ---" $(PHPUNIT) tests/Unit/Domain/Event $(PHPUNIT) tests/Unit/Domain/EventSubscriber cli-test: @echo "--- Running Command Line Tests ---" $(PHPUNIT) tests/Unit/Infrastructure/Console form-test: @echo "--- Running Form Tests ---" $(PHPUNIT) tests/Unit/Controller/Form web-test: @echo "--- Running Web Controller and Manager Tests ---" $(PHPUNIT) tests/Unit/Controller/Web/Dashboard func-test: @echo "--- Running Functional Web Tests ---" $(PHPUNIT) tests/Functional/Controller/Web/Dashboard infra-test: @echo "--- Running Unit Tests from Infrastructure ---" $(PHPUNIT) tests/Unit/Infrastructure repo-test: @echo "--- Running Integration Repository Tests ---" $(PHPUNIT) tests/Integration/Infrastructure/Repository $(PHPUNIT) tests/Integration/Service app-test: @echo "--- Running Unit Tests from Application ---" $(PHPUNIT) tests/Unit/Application