/** * @dataProvider dataProviderTestDefine */ public function testDefine($string, $isDefine, $getDefineKey) { $word = new Word($string); $this->assertSame($isDefine, $word->isDefine()); $this->assertSame($getDefineKey, $word->getDefineKey()); }