Skip to content

Commit

Permalink
Add LoginForm() implementation test
Browse files Browse the repository at this point in the history
  • Loading branch information
aircodepl committed Feb 24, 2023
1 parent d920b0d commit b36432d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/unit/Forms/LoginFormTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

declare(strict_types=1);

namespace unit\Forms;

use Codeception\Test\Unit;
use Invo\Forms\LoginForm;
use Phalcon\Forms\Form;

final class LoginFormTest extends Unit
{
public function testImplementation(): void
{
$class = $this->createMock(LoginForm::class);

$this->assertInstanceOf(Form::class, $class);
}
}

0 comments on commit b36432d

Please sign in to comment.