private function DecoderTest::validateTypeDecoding in Smart IP 7.2
Same name and namespace in other branches
- 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
File
- includes/
vendor/ maxmind-db/ reader/ tests/ MaxMind/ Db/ Test/ Reader/ DecoderTest.php, line 329
Class
Namespace
MaxMind\Db\Test\ReaderCode
private function validateTypeDecoding($type, $tests) {
foreach ($tests as $expected => $input) {
$this
->checkDecoding($type, $input, $expected);
}
}