From 0965d62be00a7820f97284704dc71f37e661b412 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sun, 26 Aug 2018 01:38:28 -0400 Subject: Begin migration to Rust; Add actix-web, diesel as main dependencies --- test/Model/ResultTest.php | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 test/Model/ResultTest.php (limited to 'test/Model/ResultTest.php') diff --git a/test/Model/ResultTest.php b/test/Model/ResultTest.php deleted file mode 100644 index 0380182..0000000 --- a/test/Model/ResultTest.php +++ /dev/null @@ -1,37 +0,0 @@ -assertInstanceOf( - Result::class, - new Result("TEST_SUCCESS", array("it worked")) - ); - } - - public function testHasAccessibleValues() - { - $resultType = "VISIBLE"; - $result = array("array", "of", "values"); - $resultObject = new Result($resultType, $result); - - $this->assertEquals( - $resultType, - $resultObject->getResultType() - ); - $this->assertEquals( - $result, - $resultObject->getResult() - ); - } -} -- cgit