You are here

public function ReaderTest::testClosedMetadata in Smart IP 6.2

Same name and namespace in other branches
  1. 7.2 includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/ReaderTest.php \MaxMind\Db\Test\Reader\ReaderTest::testClosedMetadata()

@expectedException BadMethodCallException @expectedExceptionMessage Attempt to read from a closed MaxMind DB.

File

includes/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/ReaderTest.php, line 279

Class

ReaderTest

Namespace

MaxMind\Db\Test\Reader

Code

public function testClosedMetadata() {
  $reader = new Reader('tests/data/test-data/MaxMind-DB-test-decoder.mmdb');
  $reader
    ->close();
  $reader
    ->metadata();
}