public ScheduledQueryRunServiceTest()
        {
            this.service = new ScheduledQueryRunService();

            this.listOptions = new ScheduledQueryRunListOptions()
            {
                Limit = 1,
            };
        }
Exemplo n.º 2
0
        public ScheduledQueryRunServiceTest(MockHttpClientFixture mockHttpClientFixture)
            : base(mockHttpClientFixture)
        {
            this.service = new ScheduledQueryRunService();

            this.listOptions = new ScheduledQueryRunListOptions
            {
                Limit = 1,
            };
        }
Exemplo n.º 3
0
        public ScheduledQueryRunServiceTest(
            StripeMockFixture stripeMockFixture,
            MockHttpClientFixture mockHttpClientFixture)
            : base(stripeMockFixture, mockHttpClientFixture)
        {
            this.service = new ScheduledQueryRunService(this.StripeClient);

            this.listOptions = new ScheduledQueryRunListOptions
            {
                Limit = 1,
            };
        }