├── .atoum.php ├── .bootstrap.atoum.php ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── UPGRADE-3.0.md ├── UPGRADE-4.0.md ├── behat.yml.dist ├── composer.json ├── i18n ├── de.xliff ├── en.xliff.dist ├── es.xliff ├── fr.xliff ├── ja.xliff ├── pt.xliff └── ru.xliff ├── src ├── Asserter.php ├── Context │ ├── BaseContext.php │ ├── BrowserContext.php │ ├── ContextClass │ │ └── ClassResolver.php │ ├── DebugContext.php │ ├── JsonContext.php │ ├── RestContext.php │ ├── SystemContext.php │ ├── TableContext.php │ └── XmlContext.php ├── Extension.php ├── Html.php ├── HttpCall │ ├── ContextSupportedVoter.php │ ├── ContextSupportedVoters.php │ ├── FilterableHttpCallResult.php │ ├── HttpCallListener.php │ ├── HttpCallResult.php │ ├── HttpCallResultPool.php │ ├── HttpCallResultPoolResolver.php │ ├── Request.php │ ├── Request │ │ ├── BrowserKit.php │ │ └── Goutte.php │ └── RestContextVoter.php ├── Json │ ├── Json.php │ ├── JsonInspector.php │ └── JsonSchema.php ├── Resources │ ├── schemas │ │ ├── atom.xsd │ │ └── rss-2.0.xsd │ └── services │ │ └── http_call.yml └── Xml │ └── Dom.php └── tests ├── features ├── bootstrap │ └── Bootstrap.php ├── browser.feature ├── debug.feature ├── fr │ ├── browser.feature │ ├── debug.feature │ ├── json.feature │ ├── rest.feature │ ├── system.feature │ ├── table.feature │ └── xml.feature ├── ja │ ├── browser.feature │ ├── debug.feature │ ├── json.feature │ ├── rest.feature │ ├── system.feature │ ├── table.feature │ └── xml.feature ├── json.feature ├── pt │ ├── browser.feature │ ├── debug.feature │ ├── json.feature │ ├── rest.feature │ ├── system.feature │ ├── table.feature │ └── xml.feature ├── rest.feature ├── ru │ ├── browser.feature │ ├── debug.feature │ ├── json.feature │ ├── rest.feature │ ├── system.feature │ ├── table.feature │ └── xml.feature ├── system.feature ├── table.feature └── xml.feature ├── fixtures ├── files │ ├── lorem.txt │ └── schema.json └── www │ ├── browser │ ├── auth.php │ ├── elements.html │ ├── frames.html │ ├── index.html │ └── timeout.html │ ├── index.html │ ├── json │ ├── arraywithtypes.json │ ├── booking.json │ ├── definitions.json │ ├── emptyarray.json │ ├── emptyobject.json │ ├── imajson.json │ ├── imnotajson.json │ ├── notnullvalues.json │ ├── rootarray.json │ ├── schema.json │ ├── schemaref.json │ ├── swagger.json │ ├── swaggerpartial.json │ ├── withref-invalid.json │ └── withref.json │ ├── rest │ └── index.php │ ├── table │ └── index.html │ └── xml │ ├── book.xml │ ├── country.xml │ ├── feed.atom │ ├── feed.rss │ ├── feed.xml │ ├── imnotaxml.xml │ ├── needsformatting.xml │ ├── people.xml │ ├── schema.dtd │ ├── schema.ng │ └── schema.xsd └── units └── Json ├── Json.php ├── JsonInspector.php └── JsonSchema.php /.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Behatch/contexts/HEAD/.atoum.php -------------------------------------------------------------------------------- /.bootstrap.atoum.php: -------------------------------------------------------------------------------- 1 |