MDL-15666 new unit test for new button class

This commit is contained in:
nicolasconnault 2008-09-10 17:08:14 +00:00
parent d1581fc53b
commit ef6f0f603d
2 changed files with 96 additions and 0 deletions

View file

@ -275,6 +275,38 @@ class portfolio_add_button {
}
return true;
}
/**
* Getter for $format property
* @return array
*/
public function get_formats() {
return $this->formats;
}
/**
* Getter for $callbackargs property
* @return array
*/
public function get_callbackargs() {
return $this->callbackargs;
}
/**
* Getter for $callbackfile property
* @return array
*/
public function get_callbackfile() {
return $this->callbackfile;
}
/**
* Getter for $callbackclass property
* @return array
*/
public function get_callbackclass() {
return $this->callbackclass;
}
}