forked from Sylius/RefundPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpspec.yml.dist
More file actions
22 lines (21 loc) · 1009 Bytes
/
Copy pathphpspec.yml.dist
File metadata and controls
22 lines (21 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
suites:
sylius_refund:
namespace: Sylius\RefundPlugin
psr4_prefix: Sylius\RefundPlugin
extensions:
LeanPHP\PhpSpec\CodeCoverage\CodeCoverageExtension:
blacklist:
- src/Action #controllers should not be unit tests, as they only translates request to response (with some operations in the meantime)
- src/DependencyInjection #configuration
- src/Entity #anemic classes with no logic
- src/File/TemporaryFileManager.php #covered with phpunit
- src/Form #builders, no value in testing them
- src/Menu #builders, no value in testing them
- src/StateResolver/OrderTransitions.php #only constants
- src/StateResolver/RefundPaymentTransitions.php #only constants
- src/SyliusRefundPlugin.php #configuration
- src/Twig #covered with behat (strictly UI-oriented classes)
format:
- text
lower_upper_bound: 95
high_lower_bound: 100