public final class TestEquals {
// args[0] must be a file system path to a types.rdb,
// args[1] must be a file system path to a services.rdb
public static void main(String[] args) throws Exception {
TestBed t = new TestBed();
boolean success = t.execute(
new Provider(t, toFileUrl(args[0]), toFileUrl(args[1])), true,
Client.class, 0);
System.out.println("success? " + success);
System.exit(success ? 0 : 1);
}