Skip to content

Commit

Permalink
upgrade to latest goodies
Browse files Browse the repository at this point in the history
  • Loading branch information
nagi1 committed Jul 20, 2024
1 parent 11d8a70 commit 61561e1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 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.9","defects":[],"times":{"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_parse_xml_string":0.018,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_discover_Mime_types":0.008,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_get_capabilities_url":0.001,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_discover_an_extension":0.003,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_discover_an_action":0.004,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_get_current_and_old_proof_exponent":0.001,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_get_current_and_old_public_keys":0.001,"P\\Tests\\Unit\\Services\\DiscoveryTest::__pest_evaluable_it_can_get_current_and_old_proof_modulus":0.001,"P\\Tests\\Unit\\Services\\ProofValidatorTest::__pest_evaluable_it_can_verify_X_WOPI_Proof_with_old_discovery_proof_key":0.026,"P\\Tests\\Unit\\Services\\ProofValidatorTest::__pest_evaluable_it_can_verify_X_WOPI_Proof_with_current_discovery_proof_key":0.001,"P\\Tests\\Unit\\Services\\ProofValidatorTest::__pest_evaluable_it_can_verify_X_WOPI_ProofOld_with_current_discovery_proof_key":0.002,"P\\Tests\\Unit\\Services\\ProofValidatorTest::__pest_evaluable_it_can_verify_a_request_after_20_minutes":0.001,"P\\Tests\\Unit\\Services\\ProofValidatorTest::__pest_evaluable_it_can_invalidate_proof_key":0.002}}
39 changes: 39 additions & 0 deletions phpunit.xml.dist.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
verbose="true"
>
<testsuites>
<testsuite name="Nagi Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
</phpunit>

0 comments on commit 61561e1

Please sign in to comment.