forked from fspv/python-leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_difficulty.py
More file actions
39 lines (26 loc) · 834 Bytes
/
Copy pathtest_difficulty.py
File metadata and controls
39 lines (26 loc) · 834 Bytes
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
# coding: utf-8
"""
Leetcode API
Leetcode API implementation. # noqa: E501
OpenAPI spec version: 1.0.1-1
Contact: pv.safronov@gmail.com
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import leetcode
from leetcode.models.difficulty import Difficulty # noqa: E501
from leetcode.rest import ApiException
class TestDifficulty(unittest.TestCase):
"""Difficulty unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testDifficulty(self):
"""Test Difficulty"""
# FIXME: construct object with mandatory attributes with example values
# model = leetcode.models.difficulty.Difficulty() # noqa: E501
pass
if __name__ == "__main__":
unittest.main()