Skip to content

Commit 970419f

Browse files
committed
Add AssertClassTest
1 parent 0b735b5 commit 970419f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/AssertClassTest.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace EnricoStahn\JsonAssert\Tests;
4+
5+
use EnricoStahn\JsonAssert\AssertClass;
6+
7+
class AssertClassTest extends \PHPUnit_Framework_TestCase
8+
{
9+
public function testClassInstance()
10+
{
11+
static::assertInstanceOf('EnricoStahn\JsonAssert\AssertClass', new AssertClass());
12+
}
13+
}

0 commit comments

Comments
 (0)