Login   Register  
PHP Classes
elePHPant
Icontem

File: tests/src/Melody/Validation/Constraints/MinTest.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marcelo Santos  >  Melody Validation  >  tests/src/Melody/Validation/Constraints/MinTest.php  >  Download  
File: tests/src/Melody/Validation/Constraints/MinTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: Melody Validation
Validate values according to many types of rules
Author: By
Last change:
Date: 2013-10-17 20:23
Size: 624 bytes
 

Contents

Class file image Download
<?php

namespace Melody\Validation\Constraints;

use 
Melody\Validation\Validator as v;

class 
MinTest extends \PHPUnit_Framework_TestCase
{

    public function 
test_valid_min_number_should_pass()
    {
        
$this->assertTrue(v::min(5)->validate(7));
    }

    public function 
test_invalid_min_number_should_fail_validation()
    {
        
$this->assertFalse(v::min(5)->validate(4));
    }

    public function 
test_not_string_argument_exception()
    {
        
$this->setExpectedException('InvalidArgumentException');
        
$this->assertInstanceOf('InvalidArgumentException'v::min(5)->validate(null));
    }

}