N98\Magento\Command\Admin\User\LockCommandTest::testConvertDaysToSeconds PHP Method

testConvertDaysToSeconds() public method

Ensure that days are correctly converted to seconds
public testConvertDaysToSeconds ( integer $days, integer $expected )
$days integer
$expected integer
    public function testConvertDaysToSeconds($days, $expected)
    {
        $command = new LockCommand();
        $result = $command->daysToSeconds($days);
        $this->assertSame($expected, $result);
    }