/** * CCValidator::true */ public function test_true() { $validator = new CCValidator(array('1' => 'true', '2' => '1', '3' => true)); $this->assertFalse($validator->true('1')); $this->assertTrue($validator->not_true('1')); $this->assertFalse($validator->true('2')); $this->assertTrue($validator->true('3')); }