Merge pull request #12032 from jitendrapurohit/core-80
[civicrm-core.git] / tests / phpunit / HelloTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
2fe49090 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
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
4cbe18b8
EM
42/**
43 * Class HelloTest
44 */
6a488035
TO
45class HelloTest extends PHPUnit_Framework_TestCase {
46 // contains the object handle of the string class
47 var $abc;
4cbe18b8
EM
48
49 /**
795492f3 50 * @param string|null $name
4cbe18b8 51 */
00be9182 52 public function __construct($name = NULL) {
6a488035
TO
53 parent::__construct($name);
54 }
55
795492f3 56 /**
eceb18cc 57 * Called before the test functions will be executed.
795492f3
TO
58 * this function is defined in PHPUnit_TestCase and overwritten
59 * here
60 */
00be9182 61 public function setUp() {
6a488035
TO
62 // create a new instance of String with the
63 // string 'abc'
64 $this->abc = "hello";
65 }
66
795492f3 67 /**
eceb18cc 68 * Called after the test functions are executed.
795492f3
TO
69 * this function is defined in PHPUnit_TestCase and overwritten
70 * here.
71 */
00be9182 72 public function tearDown() {
6a488035
TO
73 // delete your instance
74 unset($this->abc);
75 }
76
546b78fa 77 /**
eceb18cc 78 * test the toString function.
546b78fa 79 */
00be9182 80 public function testHello() {
6a488035
TO
81 $result = $this->abc;
82 $expected = 'hello';
83 $this->assertEquals($result, $expected);
84 }
96025800 85
6a488035 86}