sarga/tests/functional/Admin/Settings/ExchangeRatesCest.php

23 lines
422 B
PHP
Raw Normal View History

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();
$I->amOnAdminRoute('admin.exchange_rates.index');
2021-05-18 05:21:24 +00:00
$I->seeCurrentRouteIs('admin.exchange_rates.index');
}
}