Esempio n. 1
0
 /**
  * Test the compareWith method.
  *
  * @return void
  */
 public function testCompareWith()
 {
     $context = ['data' => ['other' => 'a value']];
     $this->assertTrue(Validation::compareWith('a value', 'other', $context));
     $context = ['data' => ['other' => 'different']];
     $this->assertFalse(Validation::compareWith('a value', 'other', $context));
     $context = [];
     $this->assertFalse(Validation::compareWith('a value', 'other', $context));
 }