-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#111. Add skeleton for SpellCheckTest
- Loading branch information
a.kushman
committed
Jun 1, 2018
1 parent
fc9526a
commit 38fb783
Showing
2 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: arthurkushman | ||
* Date: 01/06/2018 | ||
* Time: 13:18 | ||
*/ | ||
|
||
namespace rjapitest\unit\extensions; | ||
|
||
|
||
use rjapi\extension\SpellCheck; | ||
use rjapitest\unit\TestCase; | ||
|
||
/** | ||
* Class SpellCheckTest | ||
* | ||
* @package rjapitest\unit\extensions | ||
* | ||
* @property SpellCheck spellCheck | ||
*/ | ||
class SpellCheckTest extends TestCase | ||
{ | ||
private $spellCheck; | ||
|
||
/** | ||
* | ||
*/ | ||
public function setUp() | ||
{ | ||
parent::setUp(); | ||
$this->spellCheck = new SpellCheck('article'); | ||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function it_checks_text() | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function it_is_enabled() | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function it_gets_language() | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* @test | ||
*/ | ||
public function it_get_field() | ||
{ | ||
|
||
} | ||
} |