INFRA-132 - Drupal.WhiteSpace.Comma.NoSpace
[civicrm-core.git] / tests / phpunit / HelloTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 // contains the object handle of the string class
47 var $abc;
48
49 /**
50 * @param string|null $name
51 */
52 public function __construct($name = NULL) {
53 parent::__construct($name);
54 }
55
56 /**
57 * Called before the test functions will be executed
58 * this function is defined in PHPUnit_TestCase and overwritten
59 * here
60 */
61 public function setUp() {
62 // create a new instance of String with the
63 // string 'abc'
64 $this->abc = "hello";
65 }
66
67 /**
68 * Called after the test functions are executed
69 * this function is defined in PHPUnit_TestCase and overwritten
70 * here.
71 */
72 public function tearDown() {
73 // delete your instance
74 unset($this->abc);
75 }
76
77 /**
78 * test the toString function
79 */
80 public function testHello() {
81 $result = $this->abc;
82 $expected = 'hello';
83 $this->assertEquals($result, $expected);
84 }
85
86 }