mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-24 03:21:19 +01:00
28 lines
922 B
PHP
28 lines
922 B
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Framework;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test html_checkbox class
|
|
*/
|
|
class HtmlCheckboxTest extends TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_checked_state()
|
|
{
|
|
$input = new \html_checkbox(['value' => 1]);
|
|
|
|
$this->assertSame('<input value="1" type="checkbox">', $input->show(0));
|
|
$this->assertSame('<input value="1" type="checkbox">', $input->show('0'));
|
|
$this->assertSame('<input value="1" checked="checked" type="checkbox">', $input->show(1));
|
|
$this->assertSame('<input value="1" checked="checked" type="checkbox">', $input->show('1'));
|
|
$this->assertSame('<input value="1" checked="checked" type="checkbox">', $input->show(true));
|
|
// test that the checked state does not "leak"
|
|
$this->assertSame('<input value="1" type="checkbox">', $input->show(0));
|
|
}
|
|
}
|