-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
53cc2cb9072c08ecaec2207760a34279fe0f99a8
- Loading branch information
1 parent
16d5791
commit ba8ce7b
Showing
68 changed files
with
4,548 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Analysis Specification for Meta-analysis | ||
api to create a meta-analysis specification # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: [email protected] | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurosynth_compose_sdk | ||
from neurosynth_compose_sdk.models.annotation import Annotation # noqa: E501 | ||
from neurosynth_compose_sdk.rest import ApiException | ||
|
||
class TestAnnotation(unittest.TestCase): | ||
"""Annotation unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test Annotation | ||
include_option 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 `Annotation` | ||
""" | ||
model = neurosynth_compose_sdk.models.annotation.Annotation() # noqa: E501 | ||
if include_optional : | ||
return Annotation( | ||
neurostore_id = '', | ||
snapshot = None, | ||
studyset = '', | ||
neurostore_url = '' | ||
) | ||
else : | ||
return Annotation( | ||
) | ||
""" | ||
|
||
def testAnnotation(self): | ||
"""Test Annotation""" | ||
# inst_req_only = self.make_instance(include_optional=False) | ||
# inst_req_and_optional = self.make_instance(include_optional=True) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Analysis Specification for Meta-analysis | ||
api to create a meta-analysis specification # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: [email protected] | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurosynth_compose_sdk | ||
from neurosynth_compose_sdk.models.annotation_list import AnnotationList # noqa: E501 | ||
from neurosynth_compose_sdk.rest import ApiException | ||
|
||
class TestAnnotationList(unittest.TestCase): | ||
"""AnnotationList unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnnotationList | ||
include_option 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 `AnnotationList` | ||
""" | ||
model = neurosynth_compose_sdk.models.annotation_list.AnnotationList() # noqa: E501 | ||
if include_optional : | ||
return AnnotationList( | ||
results = [ | ||
null | ||
], | ||
metadata = neurosynth_compose_sdk.models.metadata.metadata() | ||
) | ||
else : | ||
return AnnotationList( | ||
) | ||
""" | ||
|
||
def testAnnotationList(self): | ||
"""Test AnnotationList""" | ||
# inst_req_only = self.make_instance(include_optional=False) | ||
# inst_req_and_optional = self.make_instance(include_optional=True) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Analysis Specification for Meta-analysis | ||
api to create a meta-analysis specification # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: [email protected] | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurosynth_compose_sdk | ||
from neurosynth_compose_sdk.models.annotation_post_body import AnnotationPostBody # noqa: E501 | ||
from neurosynth_compose_sdk.rest import ApiException | ||
|
||
class TestAnnotationPostBody(unittest.TestCase): | ||
"""AnnotationPostBody unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnnotationPostBody | ||
include_option 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 `AnnotationPostBody` | ||
""" | ||
model = neurosynth_compose_sdk.models.annotation_post_body.AnnotationPostBody() # noqa: E501 | ||
if include_optional : | ||
return AnnotationPostBody( | ||
cached_studyset_id = '', | ||
neurostore_id = '', | ||
snapshot = neurosynth_compose_sdk.models.snapshot.snapshot(), | ||
studyset = '', | ||
neurostore_url = '' | ||
) | ||
else : | ||
return AnnotationPostBody( | ||
cached_studyset_id = '', | ||
) | ||
""" | ||
|
||
def testAnnotationPostBody(self): | ||
"""Test AnnotationPostBody""" | ||
# inst_req_only = self.make_instance(include_optional=False) | ||
# inst_req_and_optional = self.make_instance(include_optional=True) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Analysis Specification for Meta-analysis | ||
api to create a meta-analysis specification # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: [email protected] | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurosynth_compose_sdk | ||
from neurosynth_compose_sdk.models.annotation_return import AnnotationReturn # noqa: E501 | ||
from neurosynth_compose_sdk.rest import ApiException | ||
|
||
class TestAnnotationReturn(unittest.TestCase): | ||
"""AnnotationReturn unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnnotationReturn | ||
include_option 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 `AnnotationReturn` | ||
""" | ||
model = neurosynth_compose_sdk.models.annotation_return.AnnotationReturn() # noqa: E501 | ||
if include_optional : | ||
return AnnotationReturn( | ||
neurostore_id = '', | ||
snapshot = neurosynth_compose_sdk.models.snapshot.snapshot(), | ||
studyset = '', | ||
neurostore_url = '', | ||
id = '', | ||
updated_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), | ||
created_at = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), | ||
user = '', | ||
username = '' | ||
) | ||
else : | ||
return AnnotationReturn( | ||
) | ||
""" | ||
|
||
def testAnnotationReturn(self): | ||
"""Test AnnotationReturn""" | ||
# inst_req_only = self.make_instance(include_optional=False) | ||
# inst_req_and_optional = self.make_instance(include_optional=True) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Analysis Specification for Meta-analysis | ||
api to create a meta-analysis specification # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: [email protected] | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurosynth_compose_sdk | ||
from neurosynth_compose_sdk.models.annotation_update import AnnotationUpdate # noqa: E501 | ||
from neurosynth_compose_sdk.rest import ApiException | ||
|
||
class TestAnnotationUpdate(unittest.TestCase): | ||
"""AnnotationUpdate unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnnotationUpdate | ||
include_option 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 `AnnotationUpdate` | ||
""" | ||
model = neurosynth_compose_sdk.models.annotation_update.AnnotationUpdate() # noqa: E501 | ||
if include_optional : | ||
return AnnotationUpdate( | ||
cached_studyset_id = '', | ||
neurostore_id = '', | ||
snapshot = neurosynth_compose_sdk.models.snapshot.snapshot(), | ||
studyset = '', | ||
neurostore_url = '' | ||
) | ||
else : | ||
return AnnotationUpdate( | ||
) | ||
""" | ||
|
||
def testAnnotationUpdate(self): | ||
"""Test AnnotationUpdate""" | ||
# inst_req_only = self.make_instance(include_optional=False) | ||
# inst_req_and_optional = self.make_instance(include_optional=True) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
Oops, something went wrong.