X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/c7a4c2c88a2a1ef68955d595b6e22b9d4430d194..d0c1b73fb33b93264b387f04d90723146baf3465:/test/php/Nominatim/SearchContextTest.php diff --git a/test/php/Nominatim/SearchContextTest.php b/test/php/Nominatim/SearchContextTest.php index db0b2dee..b5ef1a7a 100644 --- a/test/php/Nominatim/SearchContextTest.php +++ b/test/php/Nominatim/SearchContextTest.php @@ -1,17 +1,23 @@ <?php +/** + * SPDX-License-Identifier: GPL-2.0-only + * + * This file is part of Nominatim. (https://nominatim.org) + * + * Copyright (C) 2022 by the Nominatim developer community. + * For a full list of authors see the git log. + */ namespace Nominatim; -@define('CONST_BasePath', '../../'); +require_once(CONST_LibDir.'/SearchContext.php'); -require_once '../../lib/SearchContext.php'; - -class SearchContextTest extends \PHPUnit_Framework_TestCase +class SearchContextTest extends \PHPUnit\Framework\TestCase { private $oCtx; - protected function setUp() + protected function setUp(): void { $this->oCtx = new SearchContext(); }