コード例 #1
0
    public Topic CreateTopic(string topicId)
    {
        var createTopicSampleObject = new CreateTopicSample();
        var topic = createTopicSampleObject.CreateTopic(ProjectId, topicId);

        TempTopicIds.Add(topicId);
        return(topic);
    }
コード例 #2
0
 public CreateTopicTest(PubsubFixture pubsubFixture)
 {
     _pubsubFixture     = pubsubFixture;
     _createTopicSample = new CreateTopicSample();
 }