Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2014-12-30-00-43-32
[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 null $name
51 */
52 function __construct($name = NULL) {
53 parent::__construct($name);
54 }
55
56 // called before the test functions will be executed
57 // this function is defined in PHPUnit_TestCase and overwritten
58 // here
59 function setUp() {
60 // create a new instance of String with the
61 // string 'abc'
62 $this->abc = "hello";
63 }
64
65 // called after the test functions are executed
66 // this function is defined in PHPUnit_TestCase and overwritten
67 // here
68 function tearDown() {
69 // delete your instance
70 unset($this->abc);
71 }
72
73 // test the toString function
74 function testHello() {
75 $result = $this->abc;
76 $expected = 'hello';
77 $this->assertEquals($result, $expected);
78 }
79 }
80