libdir . '/simpletestlib.php'); require_once($CFG->libdir . '/weblib.php'); class web_test extends UnitTestCase { function setUp() { } function tearDown() { } function test_format_string() { $this->assertEqual(format_string("& &&&&& &&"), "& &&&&& &&"); $this->assertEqual(format_string("ANother & &&&&& Category"), "ANother & &&&&& Category"); $this->assertEqual(format_string("ANother & &&&&& Category", true), "ANother & &&&&& Category"); $this->assertEqual(format_string("Nick's Test Site & Other things", true), "Nick's Test Site & Other things"); } } ?>