Skip to content

Commit

Permalink
Basic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tarkhov committed Sep 17, 2020
1 parent 5c60aeb commit 4ebae94
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="Main">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>
12 changes: 12 additions & 0 deletions tests/XmlMiddlewareTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace GuzzleXml\Tests;

use PHPUnit\Framework\TestCase;

class XmlMiddlewareTest extends TestCase
{
public function testRequest()
{
$this->assertTrue(true);
}
}

0 comments on commit 4ebae94

Please sign in to comment.