// ���輯Ⱥ������̨master,topic1��master����3������;
// topic2��master����1������,����һ������ص�master����1������
ZkUtils.createEphemeralPath(this.client, this.metaZookeeper.brokerIdsPath + "/0/master", "meta://localhost:0");
ZkUtils.createEphemeralPath(this.client, this.metaZookeeper.brokerIdsPath + "/1/master", "meta://localhost:1");
this.client.createEphemeral(this.metaZookeeper.brokerTopicsSubPath + "/topic1/0-m",
new TopicBroker(3, "0-m").toJson());
this.client.createEphemeral(this.metaZookeeper.brokerTopicsSubPath + "/topic2/0-m",
new TopicBroker(1, "0-m").toJson());
this.client.createEphemeral(this.metaZookeeper.brokerTopicsSubPath + "/topic2/1-m",
new TopicBroker(1, "1-m").toJson());
this.mockConnect("meta://localhost:0");
// this.mockConnect("meta://localhost:1");�����ӵ�����һ��master
this.mockCommitOffsets(GROUP, new ArrayList<TopicPartitionRegInfo>());
this.mockLoadNullInitOffset("topic1", GROUP, new Partition("0-0"));