芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/tests/Net_DNS_RRTest.php
name = 'example.com'; $expected->type = 'SOA'; $expected->class = 'IN'; $expected->ttl = 3600; $expected->rdlength = 0; $expected->mname = 'ns.example.com'; $expected->rname = 'support.example.com'; $expected->serial = 8; $expected->refresh = 3600; $expected->retry = 600; $expected->expire = 1209600; $expected->minimum = 3600; $this->assertSame(print_r($expected, true), print_r($rr, true)); } public function testBug16504() { $rr = Net_DNS_RR::new_from_array(array('type' => 'A', 'name' => 'example.com', 'ttl' => '3600' , 'address' => '192.168.0.15')); $this->assertTrue($rr instanceof Net_DNS_RR_A); } }