2021-05-18 05:21:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Tests\Functional\Admin\Settings;
|
|
|
|
|
|
|
|
|
|
use FunctionalTester;
|
|
|
|
|
|
|
|
|
|
class ExchangeRatesCest
|
|
|
|
|
{
|
2021-10-28 09:29:17 +00:00
|
|
|
/**
|
|
|
|
|
* Index page test.
|
|
|
|
|
*
|
|
|
|
|
* @param FunctionalTester $I
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2021-05-18 05:21:24 +00:00
|
|
|
public function testIndex(FunctionalTester $I): void
|
|
|
|
|
{
|
|
|
|
|
$I->loginAsAdmin();
|
|
|
|
|
|
2022-01-03 11:01:00 +00:00
|
|
|
$I->amOnAdminRoute('admin.exchange_rates.index');
|
2021-05-18 05:21:24 +00:00
|
|
|
$I->seeCurrentRouteIs('admin.exchange_rates.index');
|
|
|
|
|
}
|
|
|
|
|
}
|