Skip to content

Commit a131a27

Browse files
author
Greg Bowler
committed
test: test
1 parent ccb4e5f commit a131a27

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

test/phpunit/CacheTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
namespace Gt\FileCache\Test;
3+
4+
use PHPUnit\Framework\TestCase;
5+
6+
class CacheTest extends TestCase {
7+
public function test():void {
8+
self::assertTrue(true);
9+
}
10+
}

test/phpunit/phpunit.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">../../src</directory>
6+
</include>
7+
<report>
8+
<html outputDirectory="./_coverage" lowUpperBound="35" highLowerBound="70"/>
9+
<text outputFile="php://stdout" showUncoveredFiles="true"/>
10+
</report>
11+
</coverage>
12+
<testsuites>
13+
<testsuite name="main">
14+
<directory suffix="Test.php">.</directory>
15+
</testsuite>
16+
</testsuites>
17+
<logging/>
18+
</phpunit>

0 commit comments

Comments
 (0)