public static function checkSize($value = null, $size = null)
 {
     $arraySize = Data\SizeArrayData::getValue($value);
     if (CheckNotNullModel::check($size) && CheckIssetModel::check($size) && CheckNotNullModel::check($value) && CheckIssetModel::check($value) && $arraySize == $size) {
         return Data\TrueData::set();
     }
     return Data\FalseData::set();
 }
 public function testGetValueAssertNotEquals()
 {
     $this->currentResult = Data\SizeArrayData::getValue($this->array);
     $this->assertNotEquals($this->second_size, $this->currentResult);
 }