for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use \Mystem\ArticleWord;
class ArticleWordTest extends \PHPUnit_Framework_TestCase {
public function testLoad()
{
$article = 'Мы летели самолетами';
$word = ArticleWord::stemm('самолетами', null, $article);
$this->assertTrue($word instanceof ArticleWord);
}