Validate unit testing is working

This commit is contained in:
Deon George
2023-01-27 22:16:25 +11:00
parent daeea9a1f6
commit 210793e814
5 changed files with 21 additions and 23 deletions

View File

@@ -2,8 +2,7 @@
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
@@ -12,7 +11,7 @@ class ExampleTest extends TestCase
*
* @return void
*/
public function testBasicTest()
public function test_that_true_is_true()
{
$this->assertTrue(true);
}

View File

@@ -12,15 +12,15 @@ class GetBaseDNTest extends TestCase
* Test that we can get the Base DN of an LDAP server
*
* @return void
* @throws \LdapRecord\Models\ModelNotFoundException
* @throws \LdapRecord\Query\ObjectNotFoundException
* @covers \App\Ldap\Entry::baseDN()
*/
public function testBaseDNExists()
public function testBaseDnExists()
{
$o = (new Entry)->baseDN();
$this->assertIsObject($o);
$this->assertCount(1,$o->toArray());
$this->assertCount(6,$o->toArray());
$this->assertEquals('dc=Test',$o->first()->getDn());
}
}

View File

@@ -13,10 +13,10 @@ class TranslateOidTest extends TestCase
* A basic feature test example.
*
* @return void
* @throws \LdapRecord\Models\ModelNotFoundException
* @throws \LdapRecord\Query\ObjectNotFoundException
* @covers \App\Classes\LDAP\Server::getOID()
*/
public function testRootDSE()
public function testRootDse()
{
$dse = (new Entry)->rootDSE();