55565758596061626364
protected List internalLoadTests(String filename) throws IOException { return loadTests(filename); } protected DNSService getDNSService() { DNSService dns = super.getDNSService(); // Remove record limits for this test dns.setRecordLimit(0); return dns; }
6768697071727374757677
/** * Setup the mocked dnsserver * */ private void setupMockedDnsService() { mockedDnsService = new DNSService() { public List getLocalDomainNames() { throw new UnsupportedOperationException( "Unimplemented mock service"); }
56575859606162636465
public static Test suite() throws IOException { return new MailZoneAsynchronousSuite(); } protected DNSService getDNSService() { DNSService dns = super.getDNSService(); // Remove record limits for this test dns.setRecordLimit(0); return dns; }
public static Test suite() throws IOException { return new MailZoneSuite(); } protected DNSService getDNSService() { DNSService dns = super.getDNSService(); // Remove record limits for this test dns.setRecordLimit(0); return dns; }
5960616263646566676869
/** * Setup the mocked dnsserver * */ private void setupMockedDnsService() { mockedDnsService = new DNSService() { @Override public List getLocalDomainNames() { throw new UnsupportedOperationException("Unimplemented mock service"); }
59606162636465666768