mirror of
https://github.com/captn3m0/india-pincode-regex.git
synced 2024-09-17 01:40:22 +00:00
Nemo
fc6bfdb113
Mainly, add a search method to find all valid pincodes See #3 Create a single unified regex. Update some dependencies However, this breaks on PHP,so I need to fix something for that.
26 lines
695 B
XML
26 lines
695 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap = "vendor/autoload.php"
|
|
backupGlobals = "false"
|
|
backupStaticAttributes = "false"
|
|
colors = "true"
|
|
convertErrorsToExceptions = "true"
|
|
convertNoticesToExceptions = "true"
|
|
convertWarningsToExceptions = "true"
|
|
processIsolation = "false"
|
|
stopOnFailure = "false">
|
|
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|