Merge pull request #14103 from jitendrapurohit/core-889
[civicrm-core.git] / tests / phpunit / HelloTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * @file HelloTest.php
30 *
31 * This is a simple test to make sure that you have phpunit
32 * correctly installed and working. The call will look something like:
33 *
34 * <code>
35 * scripts/phpunit HelloTest
36 * </code>
37 *
38 * If your script (which would need to be in HelloTest.php) is found and runs,
39 * UR DOIN IT RIGHT!
40 */
41
42 /**
43 * Class HelloTest
44 */
45 class HelloTest extends PHPUnit\Framework\TestCase {
46 /**
47 * contains the object handle of the string class
48 * @var string
49 */
50 public $abc;
51
52 /**
53 * @param string|null $name
54 */
55 public function __construct($name = NULL) {
56 parent::__construct($name);
57 }
58
59 /**
60 * Called before the test functions will be executed.
61 * this function is defined in PHPUnit_TestCase and overwritten
62 * here
63 */
64 public function setUp() {
65 // create a new instance of String with the
66 // string 'abc'
67 $this->abc = "hello";
68 }
69
70 /**
71 * Called after the test functions are executed.
72 * this function is defined in PHPUnit_TestCase and overwritten
73 * here.
74 */
75 public function tearDown() {
76 // delete your instance
77 unset($this->abc);
78 }
79
80 /**
81 * test the toString function.
82 */
83 public function testHello() {
84 $result = $this->abc;
85 $expected = 'hello';
86 $this->assertEquals($result, $expected);
87 }
88
89 }