You are here

private function DecoderTest::validateTypeDecodingList 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::validateTypeDecodingList()
2 calls to DecoderTest::validateTypeDecodingList()
DecoderTest::testArrays in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php
DecoderTest::testMaps in includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/Reader/DecoderTest.php

File

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

Class

DecoderTest

Namespace

MaxMind\Db\Test\Reader

Code

private function validateTypeDecodingList($type, $tests) {
  foreach ($tests as $test) {
    $this
      ->checkDecoding($type, $test['input'], $test['expected'], $test['name']);
  }
}