コード例 #1
0
ファイル: EnumTest.php プロジェクト: hollodotme/types
 /**
  * @dataProvider typeSensitiveProvider
  */
 public function testEqualsIsTypeSesnsitive($init_value, $other_value)
 {
     $enum = new TestEnum($init_value);
     $this->assertFalse($enum->equals($other_value));
 }