function haanga_e5111161052e0480a9a2c62368c1510eb7d28820($vars, $return = FALSE, $blocks = array()) { global $test_global, $global1; extract($vars); if ($return == TRUE) { ob_start(); } echo htmlspecialchars(Foo_Bar::$Bar) . ' ' . htmlspecialchars(Foo_Bar::$Arr['0']) . ' ' . htmlspecialchars(Foo_Bar::$Arr['Bar']) . ' '; $foo = Foo_Bar::something(); echo ' ' . htmlspecialchars($foo) . ' '; if ($return == TRUE) { return ob_get_clean(); } }
public function testGetString() { $bar = new Foo_Bar(); $this->assertEquals('baz', $bar->getString()); }