Skip to content
Snippets Groups Projects
Commit 5d579e4b authored by llaffont's avatar llaffont
Browse files

Fichier oublié

parent 0927466f
Branches
Tags
No related merge requests found
......@@ -3551,6 +3551,7 @@ tests/application/modules/admin/controllers/ProfilControllerIndexTest.php -text
tests/application/modules/admin/controllers/ProfilControllerPageAccueilTest.php -text
tests/application/modules/admin/controllers/ProfilControllerProfilJeunesseAndAdultesWithMenusTest.php -text
tests/application/modules/admin/controllers/ProfilControllerTest.php -text
tests/application/modules/admin/controllers/StatControllerTest.php -text
tests/application/modules/admin/controllers/SystemeControllerTest.php -text
tests/application/modules/admin/controllers/SystemeControllerWebServicesTest.php -text
tests/application/modules/admin/controllers/UploadControllerTest.php -text
......
<?php
/**
* Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
*
* AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* AFI-OPAC 2.0 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once 'AdminAbstractControllerTestCase.php';
class Admin_StatControllerRecherchesInfructueusesTest extends Admin_AbstractControllerTestCase {
public function setUp() {
parent::setUp();
$this->dispatch('/admin/stat/rechercheinfructueuse', true);
}
/** @test */
public function titreShouldBeRecherchesInfructueuses() {
$this->assertXPathContentContains('//h1', 'Recherches infructueuses');
}
}
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment