You are here

private function DecoderTest::validateTypeDecoding in Smart IP 7.2

Same name and namespace in other branches
  1. 6.2 includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php \MaxMind\Db\Test\Reader\DecoderTest::validateTypeDecoding()
11 calls to DecoderTest::validateTypeDecoding()
DecoderTest::testBooleans in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php
DecoderTest::testBytes in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php
DecoderTest::testDoubles in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php
DecoderTest::testFloats in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php
DecoderTest::testInt32 in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php

... See full list

File

includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php, line 329

Class

DecoderTest

Namespace

MaxMind\Db\Test\Reader

Code

private function validateTypeDecoding($type, $tests) {
  foreach ($tests as $expected => $input) {
    $this
      ->checkDecoding($type, $input, $expected);
  }
}