diff --git a/tests/Unit/LexicalEntryTraitTest.php b/tests/Unit/LexicalEntryTraitTest.php new file mode 100644 index 0000000..a84b952 --- /dev/null +++ b/tests/Unit/LexicalEntryTraitTest.php @@ -0,0 +1,48 @@ + + * Date: 5/19/21 + * Time: 6:10 AM + */ +class LexicalEntryTraitTest extends TestCase +{ + public function testThatParseEntryReturnsCorrectlyFormattedVariables() + { + $testEntry = <<parseEntry($testEntry); + + $this->assertEquals($testLemma, $lemma); + $this->assertEquals($testCommentary, $commentary); + } +} + +class TestHandler +{ + use LexiconEntryTrait; +}