-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_group_bindings_api.py
More file actions
62 lines (39 loc) · 1.18 KB
/
test_group_bindings_api.py
File metadata and controls
62 lines (39 loc) · 1.18 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# coding: utf-8
"""
Opal API
Your Home For Developer Resources.
The version of the OpenAPI document: 1.0
Contact: hello@opal.dev
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from opal_security.api.group_bindings_api import GroupBindingsApi
class TestGroupBindingsApi(unittest.TestCase):
"""GroupBindingsApi unit test stubs"""
def setUp(self) -> None:
self.api = GroupBindingsApi()
def tearDown(self) -> None:
pass
def test_create_group_binding(self) -> None:
"""Test case for create_group_binding
"""
pass
def test_delete_group_binding(self) -> None:
"""Test case for delete_group_binding
"""
pass
def test_get_group_binding(self) -> None:
"""Test case for get_group_binding
"""
pass
def test_get_group_bindings(self) -> None:
"""Test case for get_group_bindings
"""
pass
def test_update_group_bindings(self) -> None:
"""Test case for update_group_bindings
"""
pass
if __name__ == '__main__':
unittest.main()