-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_team_ppa_offense_cumulative.py
40 lines (26 loc) · 1.13 KB
/
test_team_ppa_offense_cumulative.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# coding: utf-8
"""
College Football Data API
This is an API for accessing all sorts of college football data. Please note that API keys should be supplied with \"Bearer \" prepended (e.g. \"Bearer your_key\"). API keys can be acquired from the CollegeFootballData.com website. # noqa: E501
OpenAPI spec version: 4.5.2
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import cfbd
from cfbd.models.team_ppa_offense_cumulative import TeamPPAOffenseCumulative # noqa: E501
from cfbd.rest import ApiException
class TestTeamPPAOffenseCumulative(unittest.TestCase):
"""TeamPPAOffenseCumulative unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testTeamPPAOffenseCumulative(self):
"""Test TeamPPAOffenseCumulative"""
# FIXME: construct object with mandatory attributes with example values
# model = cfbd.models.team_ppa_offense_cumulative.TeamPPAOffenseCumulative() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()