-
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.
b0f30a36b5375e3ca102808e3db740a18468a770
- Loading branch information
1 parent
b5ce9cf
commit 765645f
Showing
101 changed files
with
6,457 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,97 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
neurostore api | ||
Create studysets for meta-analysis # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: jamesdkent21@gmail.com | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
|
||
import neurostore_sdk | ||
from neurostore_sdk.api.analyses_api import AnalysesApi # noqa: E501 | ||
from neurostore_sdk.rest import ApiException | ||
|
||
|
||
class TestAnalysesApi(unittest.TestCase): | ||
"""AnalysesApi unit test stubs""" | ||
|
||
def setUp(self): | ||
self.api = neurostore_sdk.api.analyses_api.AnalysesApi() # noqa: E501 | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def test_analyses_get(self): | ||
"""Test case for analyses_get | ||
GET list of analyses # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_analyses_id_delete(self): | ||
"""Test case for analyses_id_delete | ||
DELETE an analysis # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_analyses_id_get(self): | ||
"""Test case for analyses_id_get | ||
GET an analysis # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_analyses_id_put(self): | ||
"""Test case for analyses_id_put | ||
PUT/update an analysis # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_analyses_post(self): | ||
"""Test case for analyses_post | ||
POST/create an analysis # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_annotation_analyses_get(self): | ||
"""Test case for annotation_analyses_get | ||
Get annotation analyses # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_annotation_analyses_id_get(self): | ||
"""Test case for annotation_analyses_id_get | ||
Your GET endpoint # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_annotation_analyses_id_put(self): | ||
"""Test case for annotation_analyses_id_put | ||
Your PUT endpoint # noqa: E501 | ||
""" | ||
pass | ||
|
||
def test_annotation_analyses_post(self): | ||
"""Test case for annotation_analyses_post | ||
Your POST endpoint # noqa: E501 | ||
""" | ||
pass | ||
|
||
|
||
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 | ||
|
||
""" | ||
neurostore api | ||
Create studysets for meta-analysis # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: jamesdkent21@gmail.com | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurostore_sdk | ||
from neurostore_sdk.models.analysis_base import AnalysisBase # noqa: E501 | ||
from neurostore_sdk.rest import ApiException | ||
|
||
class TestAnalysisBase(unittest.TestCase): | ||
"""AnalysisBase unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnalysisBase | ||
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 `AnalysisBase` | ||
""" | ||
model = neurostore_sdk.models.analysis_base.AnalysisBase() # noqa: E501 | ||
if include_optional : | ||
return AnalysisBase( | ||
name = '"houses>faces"', | ||
description = 'This analysis represents a contrast of houses versus faces.', | ||
weights = [ | ||
1 | ||
] | ||
) | ||
else : | ||
return AnalysisBase( | ||
) | ||
""" | ||
|
||
def testAnalysisBase(self): | ||
"""Test AnalysisBase""" | ||
# 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,62 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
neurostore api | ||
Create studysets for meta-analysis # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: jamesdkent21@gmail.com | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurostore_sdk | ||
from neurostore_sdk.models.analysis_common import AnalysisCommon # noqa: E501 | ||
from neurostore_sdk.rest import ApiException | ||
|
||
class TestAnalysisCommon(unittest.TestCase): | ||
"""AnalysisCommon unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnalysisCommon | ||
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 `AnalysisCommon` | ||
""" | ||
model = neurostore_sdk.models.analysis_common.AnalysisCommon() # noqa: E501 | ||
if include_optional : | ||
return AnalysisCommon( | ||
study = '', | ||
entities = [ | ||
neurostore_sdk.models.entity.entity( | ||
label = '', | ||
level = '', | ||
analysis = '', ) | ||
], | ||
order = 56 | ||
) | ||
else : | ||
return AnalysisCommon( | ||
) | ||
""" | ||
|
||
def testAnalysisCommon(self): | ||
"""Test AnalysisCommon""" | ||
# 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 | ||
|
||
""" | ||
neurostore api | ||
Create studysets for meta-analysis # noqa: E501 | ||
The version of the OpenAPI document: 1.0 | ||
Contact: jamesdkent21@gmail.com | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
import unittest | ||
import datetime | ||
|
||
import neurostore_sdk | ||
from neurostore_sdk.models.analysis_list import AnalysisList # noqa: E501 | ||
from neurostore_sdk.rest import ApiException | ||
|
||
class TestAnalysisList(unittest.TestCase): | ||
"""AnalysisList unit test stubs""" | ||
|
||
def setUp(self): | ||
pass | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def make_instance(self, include_optional): | ||
"""Test AnalysisList | ||
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 `AnalysisList` | ||
""" | ||
model = neurostore_sdk.models.analysis_list.AnalysisList() # noqa: E501 | ||
if include_optional : | ||
return AnalysisList( | ||
metadata = neurostore_sdk.models.metadata.metadata( | ||
total_count = 56, | ||
unique_count = 56, ), | ||
results = [ | ||
null | ||
] | ||
) | ||
else : | ||
return AnalysisList( | ||
) | ||
""" | ||
|
||
def testAnalysisList(self): | ||
"""Test AnalysisList""" | ||
# 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.