FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
platform_api_python_client/test/test_final_stack.py at main · CentML/platform_api_python_client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
CentML
/
platform_api_python_client
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
platform_api_python_client
/
test
/
test_final_stack.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (39 loc) · 1.43 KB
Breadcrumbs
platform_api_python_client
/
test
/
test_final_stack.py
Copy path
File metadata and controls
52 lines (39 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# coding: utf-8
"""
Platform External API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: 0.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
"""
# noqa: E501
import
unittest
from
platform_api_python_client
.
models
.
final_stack
import
FinalStack
class
TestFinalStack
(
unittest
.
TestCase
):
"""FinalStack unit test stubs"""
def
setUp
(
self
):
pass
def
tearDown
(
self
):
pass
def
make_instance
(
self
,
include_optional
)
->
FinalStack
:
"""Test FinalStack
include_optional is a boolean, when False only required
params are included, when True both required and
optional params are included """
# uncomment below to create an instance of `FinalStack`
"""
model = FinalStack()
if include_optional:
return FinalStack(
enabled = True,
values = platform_api_python_client.models.final_stack_overrides.FinalStackOverrides()
)
else:
return FinalStack(
)
"""
def
testFinalStack
(
self
):
"""Test FinalStack"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if
__name__
==
'__main__'
:
unittest
.
main
()
Back
|
FazBrowse Home
|
New Git URL