Exemplo n.º 1
0
 /**
  * Test addclasstable->get_item_display_options()
  */
 public function test_get_item_display_options()
 {
     $this->load_csv_data();
     $class = new pmclass(100);
     $class->load();
     $items = array();
     $url = new moodle_url('http://localhost/');
     $addclasstable = new addclasstable($items, $url);
     $option = $addclasstable->get_item_display_options('', $class);
     $expected = '<a href="index.php?s=crscat&amp;section=curr&amp;clsid=100&amp;action=savenew">Choose</a>';
     $this->assertEquals($expected, $option);
 }