From 9f2da572b9c674955b1f2b53e42ca9aea43e4000 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Thu, 11 Jun 2020 09:08:21 -0700 Subject: [PATCH] Added ViewFunctionTest --- tests/ViewFunctions/ViewFunctionTest.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/ViewFunctions/ViewFunctionTest.php diff --git a/tests/ViewFunctions/ViewFunctionTest.php b/tests/ViewFunctions/ViewFunctionTest.php new file mode 100644 index 0000000..0a8c125 --- /dev/null +++ b/tests/ViewFunctions/ViewFunctionTest.php @@ -0,0 +1,20 @@ +assertInstanceOf(ViewFunction::class, $viewFunction); + $this->assertEquals('foo', $viewFunction->name()); + } +}