Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Mar 31, 2024
1 parent c825184 commit 1db3aca
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
1 change: 1 addition & 0 deletions .phpunit.cache/test-results
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":"pest_2.34.6","defects":[],"times":{"P\\Tests\\Feature\\BillplzServiceProviderTest::__pest_evaluable_it_has_proper_signature":0.046,"P\\Tests\\Feature\\BillplzServiceProviderTest::__pest_evaluable_it_provides_the_service":0.017,"P\\Tests\\Feature\\BillplzServiceProviderTest::__pest_evaluable_it_can_configure_api_version":0,"P\\Tests\\Feature\\BillplzServiceProviderTest::__pest_evaluable_it_can_use_sandbox_environment":0,"P\\Tests\\Feature\\PaymentCompletion\\RedirectionTest::__pest_evaluable_it_can_accept_redirection_callback":0.045,"P\\Tests\\Feature\\PaymentCompletion\\RedirectionTest::__pest_evaluable_it_can_accept_redirection_callback_with_extra_payment_info":0.002,"P\\Tests\\Feature\\PaymentCompletion\\RedirectionTest::__pest_evaluable_it_can_accept_redirection_callback_without_signature":0.001,"P\\Tests\\Feature\\PaymentCompletion\\RedirectionTest::__pest_evaluable_it_cant_accept_redirection_callback_with_invalid_signature":0.022,"P\\Tests\\Feature\\PaymentCompletion\\RedirectionTest::__pest_evaluable_it_cant_accept_redirection_callback_given_bad_data":0.011,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_can_accept_webhook_callback":0.006,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_can_accept_webhook_callback_with_extra_payment_info":0.002,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_can_accept_webhook_callback_when_phone_number_is_null":0.003,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_can_accept_webhook_callback_without_signature":0.002,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_cant_accept_webhook_callback_with_invalid_signature":0.002,"P\\Tests\\Feature\\PaymentCompletion\\WebhookTest::__pest_evaluable_it_cant_accept_webhook_callback_given_invalid_data":0.003,"P\\Tests\\Unit\\Exceptions\\ValidationExceptionTest::__pest_evaluable_it_has_proper_signature":0.014,"P\\Tests\\Unit\\Exceptions\\ValidationExceptionTest::__pest_evaluable_it_can_override_error_bag":0,"P\\Tests\\Unit\\Exceptions\\ValidationExceptionTest::__pest_evaluable_it_can_override_status_code":0}}
29 changes: 13 additions & 16 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
<?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"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true">
<coverage includeUncoveredFiles="false">
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Billplz Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<testsuites>
<testsuite name="Billplz Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit 1db3aca

Please sign in to comment.