Fix selenium tests warnings on private test methods after removing _
Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
parent
a13e5d1c16
commit
9668731fe6
@ -67,15 +67,13 @@ class NormalizationTest extends TestBase
|
||||
);
|
||||
$this->byCssSelector('input[name=submit_normalize]')->click();
|
||||
$this->waitForElement('id', 'mainContent');
|
||||
$this->test1NFSteps();
|
||||
$this->assert1NFSteps();
|
||||
}
|
||||
|
||||
/**
|
||||
* assertions in 1NF steps 1.1, 1.2, 1.3
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
private function test1NFSteps()
|
||||
private function assert1NFSteps(): void
|
||||
{
|
||||
$this->assertEquals(
|
||||
'First step of normalization (1NF)',
|
||||
|
||||
@ -147,13 +147,10 @@ class SqlQueryTest extends TestBase
|
||||
);
|
||||
|
||||
// test inline edit button
|
||||
$this->testInlineEdit();
|
||||
$this->assertInlineEdit();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private function testInlineEdit()
|
||||
private function assertInlineEdit(): void
|
||||
{
|
||||
$this->waitForElement('cssSelector', 'a.inline_edit_sql')->click();
|
||||
// empty current query
|
||||
|
||||
Loading…
Reference in New Issue
Block a user