Hacked By AnonymousFox

Current Path : /proc/thread-self/root/opt/alt/php74/usr/share/pear/test/File_MARC/tests/
Upload File :
Current File : //proc/thread-self/root/opt/alt/php74/usr/share/pear/test/File_MARC/tests/marc_field_002.phpt

--TEST--
marc_field_002: Create fields with invalid indicators
--SKIPIF--
<?php include('tests/skipif.inc'); ?>
--FILE--
<?php
$dir = dirname(__FILE__);
require __DIR__ . '/bootstrap.php';

// create some subfields
$subfields[] = new File_MARC_Subfield('a', 'nothing');
$subfields[] = new File_MARC_Subfield('z', 'everything');

// test constructor
try {
    $field = new File_MARC_Data_Field('100', $subfields, '$@');
}
catch (Exception $e) {
    print "Error: {$e->getMessage()}\n";
}
--EXPECT--
Error: Illegal indicator "$@" in field "100" forced to blank

Hacked By AnonymousFox1.0, Coded By AnonymousFox