public void PostSequencesTest()
        {
            // TODO: add unit test for the method 'PostSequences'
            CampaignSequence body = null; // TODO: replace null with proper value
            var response          = instance.PostSequences(body);

            Assert.IsInstanceOf <CampaignSequence> (response, "response is CampaignSequence");
        }
        public void PutSequencesSequenceIdTest()
        {
            // TODO: add unit test for the method 'PutSequencesSequenceId'
            string           sequenceId = null; // TODO: replace null with proper value
            CampaignSequence body       = null; // TODO: replace null with proper value
            var response = instance.PutSequencesSequenceId(sequenceId, body);

            Assert.IsInstanceOf <CampaignSequence> (response, "response is CampaignSequence");
        }
 public void Init()
 {
     instance = new CampaignSequence();
 }