forked from Blair2004/NexoPOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.ci.xml
executable file
·86 lines (86 loc) · 5.46 KB
/
phpunit.ci.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Feature">
<directory suffix="CreateTestDatabaseSQLite.php">./tests/Feature</directory>
<directory suffix="ExceptionsTest.php">./tests/Feature</directory>
<directory suffix="HardResetTest.php">./tests/Feature</directory>
<directory suffix="CrudTest.php">./tests/Feature</directory>
<directory suffix="FieldsTest.php">./tests/Feature</directory>
<directory suffix="UploadModuleTest.php">./tests/Feature</directory>
<directory suffix="FieldsTest.php">./tests/Feature</directory>
<directory suffix="TestSetOrderType.php">./tests/Feature</directory>
<directory suffix="OptionSavingTest.php">./tests/Feature</directory>
<directory suffix="TestOtherGetRoutes.php">./tests/Feature</directory>
<directory suffix="ManageRoleTest.php">./tests/Feature</directory>
<directory suffix="CreateTaxGroupTest.php">./tests/Feature</directory>
<directory suffix="CreateTaxTest.php">./tests/Feature</directory>
<directory suffix="CreateCouponTest.php">./tests/Feature</directory>
<directory suffix="CreateRewardSystemTest.php">./tests/Feature</directory>
<directory suffix="CreateCategoryTest.php">./tests/Feature</directory>
<directory suffix="CreateCustomerGroupTest.php">./tests/Feature</directory>
<directory suffix="CreateCustomerTest.php">./tests/Feature</directory>
<directory suffix="CustomerCreditTest.php">./tests/Feature</directory>
<directory suffix="CreateUnitGroupTest.php">./tests/Feature</directory>
<directory suffix="CreateUnitTest.php">./tests/Feature</directory>
<directory suffix="CreateProductTest.php">./tests/Feature</directory>
<directory suffix="CreateProviderTest.php">./tests/Feature</directory>
<directory suffix="RefreshReportForPassDaysTest.php">./tests/Feature</directory>
<directory suffix="ConfigureAccoutingTest.php">./tests/Feature</directory>
<directory suffix="MakeProcurementTest.php">./tests/Feature</directory>
<directory suffix="PerformStockAdjustmentTest.php">./tests/Feature</directory>
<directory suffix="CreateRegisterTest.php">./tests/Feature</directory>
<directory suffix="CashRegisterActionsTest.php">./tests/Feature</directory>
<directory suffix="CreateCustomPaymentTypeAndOrder.php">./tests/Feature</directory>
<directory suffix="CreateOrderOnRegister.php">./tests/Feature</directory>
<directory suffix="CreateOrderTest.php">./tests/Feature</directory>
<directory suffix="CreateOrderPaidWithCustomerCredit.php">./tests/Feature</directory>
<directory suffix="CreateOrderWithDifferentProductPriceMode.php">./tests/Feature</directory>
<directory suffix="CombiningProductsTest.php">./tests/Feature</directory>
<directory suffix="ComputeTaxesFromSales.php">./tests/Feature</directory>
<directory suffix="DeleteOrderTest.php">./tests/Feature</directory>
<directory suffix="DeleteRegisterTest.php">./tests/Feature</directory>
<directory suffix="CanSeeReportsTest.php">./tests/Feature</directory>
<directory suffix="OrderHoldTest.php">./tests/Feature</directory>
<directory suffix="OrderWithInstalment.php">./tests/Feature</directory>
<directory suffix="OrderRefundTest.php">./tests/Feature</directory>
<directory suffix="PartiallyPaidOrderWithAdjustmentTest.php">./tests/Feature</directory>
<directory suffix="ProductAdjustmentTest.php">./tests/Feature</directory>
<directory suffix="DeletingOrderTest.php">./tests/Feature</directory>
<directory suffix="CreateExpenseCategoryTest.php">./tests/Feature</directory>
<directory suffix="CreateExpenseTest.php">./tests/Feature</directory>
<directory suffix="RenderCrudFormTest.php">./tests/Feature</directory>
<directory suffix="SaveSettingsTest.php">./tests/Feature</directory>
<directory suffix="TestRewardSystem.php">./tests/Feature</directory>
<directory suffix="CrudTest.php">./tests/Feature</directory>
<directory suffix="CrudEditEntitiesTest.php">./tests/Feature</directory>
<directory suffix="CreateUserTest.php">./tests/Feature</directory>
<directory suffix="AuthenticationTest.php">./tests/Feature</directory>
<directory suffix="CustomerRouteTest.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<php>
<server name="APP_ENV" value="TESTING"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value="tests/database.sqlite"/>
<server name="DB_HOST" value=""/>
<server name="DB_USERNAME" value=""/>
<server name="DB_PASSWORD" value=""/>
<server name="DB_PREFIX" value="nexopos_"/>
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="FALSE"/>
<server name="BROADCAST_DRIVER" value="log"/>
<server name="SANCTUM_STATEFUL_DOMAINS" value="nexopos-v4.std"/>
<server name="SESSION_DOMAIN" value="nexopos-v4.std"/>
<server name="NS_VERSION" value="false"/>
</php>
</phpunit>