convert to new security model for chart_location_activity
[openemr.git] / Tests / OptionsTest.php
blob74865aa3912aaef2938522e91ccbdaab2f7aab3d
1 <?php
2 /* Copyright © 2010 by Andrew Moore <amoore@cpan.org> */
3 /* Licensing information appears at the end of this file. */
4 require_once dirname(__FILE__) . '/BaseHarness.class.php';
6 class OptionsTest extends BaseHarness
9 public function test_disp_end_cell()
11 global $item_count;
12 $item_count = 1;
13 $expected = '</td>';
14 ob_start();
15 disp_end_cell();
16 $captured = ob_get_clean();
17 $this->assertEquals( $expected, $captured );
24 This file is free software: you can redistribute it and/or modify it under the
25 terms of the GNU General Public License as publish by the Free Software
26 Foundation.
28 This file is distributed in the hope that it will be useful, but WITHOUT ANY
29 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
30 PARTICULAR PURPOSE. See the GNU Gneral Public License for more details.
32 You should have received a copy of the GNU General Public Licence along with
33 this file. If not see <http://www.gnu.org/licenses/>.