Exemple #1
0
 function testIMG()
 {
     $i = HTML::IMG('img.img', 10, 20);
     $this->assertSelectCount('img[src=img.img]', true, $i, 'Путь к файлу');
     $this->assertSelectCount('img[width=10]', true, $i, 'Ширина');
     $this->assertSelectCount('img[height=20]', true, $i, 'Высота');
     $this->assertSelectCount('img[alt=]', true, $i, 'Пустой альт');
     $i = HTML::IMG('img.img', null, null, 'hello', 'myclass');
     $this->assertSelectCount('img[alt=hello]', true, $i, 'Заданный альт');
     $this->assertSelectCount('img[class=myclass]', true, $i, 'Атрибуты');
 }