akaunting/tests/Feature/Reports/ProfitLossTest.php
2019-04-02 18:51:06 +03:00

17 lines
352 B
PHP

<?php
namespace Tests\Feature\Reports;
use Tests\Feature\FeatureTestCase;
class ProfitLossTest extends FeatureTestCase
{
public function testItShouldSeeProfitLossPage()
{
$this->loginAs()
->get(url('reports/profit-loss'))
->assertStatus(200)
->assertSeeText(trans('reports.profit_loss'));
}
}