echo "<summary>MOeuvres::listeUnOeuvre()</summary>";
var_dump($oOeuvre->listeUnOeuvre(4));
echo "</details>";
/**
 * Test Unitaire pour la funtion recherche des oeuvres par mot clé                 
 * @author German Mahecha
 * @version 1.0
 * @update 2015-12-27
 * @license Creative Commons BY-NC 3.0 (Licence Creative Commons Attribution - Pas d’utilisation commerciale 3.0 non transposé)
 * @license http://creativecommons.org/licenses/by-nc/3.0/deed.fr
 * 
 */
$oOeuvre = new MOeuvres('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
echo "<details>";
echo "<summary>MOeuvres::listeOeuvresparMot()</summary>";
var_dump($oOeuvre->listeOeuvresparMot('a'));
echo "</details>";
/**
 * Test Unitaire pour ajouter un artiste. 
 * @author German Mahecha
 * @version 1.0
 * @update 2015-12-27
 * @license Creative Commons BY-NC 3.0 (Licence Creative Commons Attribution - Pas d’utilisation commerciale 3.0 non transposé)
 * @license http://creativecommons.org/licenses/by-nc/3.0/deed.fr
 * 
 */
$oArtiste = new MArtistes('', '', '', '', '', '');
echo "<details>";
echo "<summary>MArtistes::ajoutArtiste()</summary>";
var_dump($oArtiste->ajoutArtiste('testUnitaire', 'testUnitaire', 'testUnitaire', 'testUnitaire'));
echo "</details>";