Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
35 lines (35 loc) · 1.36 KB
/
Copy pathphpunit.xml
File metadata and controls
35 lines (35 loc) · 1.36 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
무인자 `vendor/bin/phpunit` 은 offline 스위트만 돈다 (외부 요청 0건).
라이브 테스트는 testsuite 옵션으로 명시 실행: `vendor/bin/phpunit [testsuite 옵션] PG` / `Commerce`
단, TestConfig 가드로 BOOTPAY_ENV=development 가 아니면 skip 된다 (production 호출 방지).
-->
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
stopOnFailure="false"
defaultTestSuite="offline"
>
<testsuites>
<testsuitename="offline">
<file>tests/pg/LegacyCompatibilityTest.php</file>
<file>tests/pg/SequentialBillingKeyTest.php</file>
<file>tests/pg/PgHttpWireTest.php</file>
<file>tests/commerce/CommerceWireFormatTest.php</file>
<file>tests/commerce/CommerceHttpWireTest.php</file>
<file>tests/commerce/BackwardCompatibilityTest.php</file>
<file>tests/commerce/CommerceScopeTest.php</file>
<file>tests/commerce/AlimtalkWireFormatTest.php</file>
</testsuite>
<testsuitename="PG">
<directory>tests/pg</directory>
</testsuite>
<testsuitename="Commerce">
<directory>tests/commerce</directory>
</testsuite>
</testsuites>
<php>
<envname="BOOTPAY_ENV"value="production"/>
</php>
</phpunit>