2022-06-30 08:58:16 -07:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation= "https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap= "vendor/autoload.php"
executionOrder= "depends,defects"
beStrictAboutTodoAnnotatedTests= "true"
convertDeprecationsToExceptions= "true"
failOnRisky= "true"
failOnWarning= "true"
verbose= "true" >
2024-10-24 06:36:50 -07:00
<!-- <testsuites> -->
<!-- <testsuite name="kms - basics"> -->
<!-- <file>kms/tests/KmsBasicsTests.php</file> -->
<!-- </testsuite> -->
<!-- <testsuite name="s3 - express - basics"> -->
<!-- <file>s3/tests/S3ExpressBasicsTest.php</file> -->
<!-- </testsuite> -->
2024-10-08 11:35:02 -07:00
<!-- <testsuite name="dynamodb - basics"> -->
<!-- <file>dynamodb/dynamodb_basics/tests/DynamoDBBasicsTest.php</file> -->
<!-- </testsuite> -->
2023-05-12 05:28:46 -07:00
<!-- <testsuite name="partiql - basics"> -->
<!-- <file>dynamodb/partiql_basics/tests/PartiQLBasicsTest.php</file> -->
<!-- </testsuite> -->
<!-- <testsuite name="iam"> -->
<!-- <directory>iam/tests/</directory> -->
<!-- </testsuite> -->
<!-- <testsuite name="glue - basics"> -->
<!-- <file>glue/tests/GlueBasicsTest.php</file> -->
<!-- </testsuite> -->
<!-- <testsuite name="lambda - basics"> -->
<!-- <file>lambda/tests/LambdaTest.php</file> -->
<!-- </testsuite> -->
<!-- <testsuite name="auto - scaling - basics"> -->
<!-- <file>auto - scaling/tests/AutoScalingBasicsTest.php</file> -->
<!-- </testsuite> -->
2024-10-24 06:36:50 -07:00
<!-- </testsuites> -->
2022-06-30 08:58:16 -07:00
<coverage cacheDirectory= ".phpunit.cache/code-coverage"
processUncoveredFiles= "false" >
<include >
<directory suffix= ".php" > dynamodb</directory>
2022-09-09 14:13:09 -07:00
<directory suffix= ".php" > glue</directory>
<directory suffix= ".php" > iam</directory>
2022-09-27 08:33:42 -07:00
<directory suffix= ".php" > lambda</directory>
2023-04-28 15:56:27 -07:00
<directory suffix= ".php" > auto-scaling</directory>
2024-10-08 11:35:02 -07:00
<directory suffix= ".php" > kms</directory>
2024-10-24 06:36:50 -07:00
<directory suffix= ".php" > s3</directory>
2022-06-30 08:58:16 -07:00
</include>
2023-04-28 15:56:27 -07:00
<exclude >
<directory suffix= ".php" > *vendor*</directory>
</exclude>
2022-06-30 08:58:16 -07:00
</coverage>
</phpunit>