Skip to content
This repository was archived by the owner on Nov 23, 2020. It is now read-only.

Commit 23baad1

Browse files
committed
add tests
1 parent c751bd3 commit 23baad1

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

phpunit.xml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Package Test Suite">
15+
<directory suffix=".php">./tests/</directory>
16+
</testsuite>
17+
</testsuites>
18+
</phpunit>

tests/BaseTest.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
use Illuminate\Foundation\Testing\WithoutMiddleware;
4+
use Illuminate\Foundation\Testing\DatabaseMigrations;
5+
use Illuminate\Foundation\Testing\DatabaseTransactions;
6+
7+
class BaseTest extends TestCase
8+
{
9+
/**
10+
* A basic test example.
11+
*
12+
* @return void
13+
*/
14+
public function testExample()
15+
{
16+
$this->assertTrue(true);
17+
}
18+
}

0 commit comments

Comments
 (0)