PHP Classes

File: tests/unit/Del/Field/HiddenTest.php

Recommend this page to a friend!
  Classes of Derek McLean   HTML Forms   tests/unit/Del/Field/HiddenTest.php   Download  
File: tests/unit/Del/Field/HiddenTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: HTML Forms
Generate and validate submitted HTML forms
Author: By
Last change:
Date: 6 years ago
Size: 730 bytes
 

Contents

Class file image Download
<?php

namespace DelTesting\Form\Field;

use
Codeception\TestCase\Test;
use
Del\Form\Form;
use
Del\Form\Field\Hidden;

/**
 * User: delboy1978uk
 * Date: 05/12/2016
 * Time: 02:27
 */
class HiddenTest extends Test
{
    public function
testRequiredField()
    {
       
$form = new Form('required-text-form');
       
$hidden = new Hidden('secret');
       
$hidden->setValue('hahaha');
       
$form->addField($hidden);
       
$html = $form->render();
       
$this->assertEquals('<form name="required-text-form" method="post" id="required-text-form"><div class="form-group" id="secret-form-group"><label for=""></label><input name="secret" type="hidden" class="form-control" value="hahaha"></div></form>'."\n", $html);

    }
}