File size: 2,621 Bytes
9d54b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# coding: utf-8

"""
    VCell API

    VCell API

    The version of the OpenAPI document: 1.0.1
    Contact: vcell_support@uchc.com
    Generated by OpenAPI Generator (https://openapi-generator.tech)

    Do not edit the class manually.
"""  # noqa: E501


import unittest

from vcell_client.api.field_data_resource_api import FieldDataResourceApi


class TestFieldDataResourceApi(unittest.TestCase):
    """FieldDataResourceApi unit test stubs"""

    def setUp(self) -> None:
        self.api = FieldDataResourceApi()

    def tearDown(self) -> None:
        pass

    def test_advanced_create(self) -> None:
        """Test case for advanced_create

        Create Field Data with granular detail in one request.The following files are accepted: .tif and .zip.
        """
        pass

    def test_analyze_file(self) -> None:
        """Test case for analyze_file

        Analyze uploaded image file (Tiff, Zip, and Non-GPL BioFormats) and return field data. Color mapped images not supported (the colors in those images will be interpreted as separate channels). Filenames must be lowercase alphanumeric, and can contain underscores.
        """
        pass

    def test_copy_models_field_data(self) -> None:
        """Test case for copy_models_field_data

        Copy all existing field data from a BioModel/MathModel that you have access to, but don't own.
        """
        pass

    def test_create_from_file(self) -> None:
        """Test case for create_from_file

        Submit a .zip or .tif file that converts into field data, with all defaults derived from the file submitted.
        """
        pass

    def test_create_from_simulation(self) -> None:
        """Test case for create_from_simulation

        Create new field data from existing simulation results.
        """
        pass

    def test_delete(self) -> None:
        """Test case for delete

        Delete the selected field data.
        """
        pass

    def test_get_all_ids(self) -> None:
        """Test case for get_all_ids

        Get all of the ids used to identify, and retrieve field data.
        """
        pass

    def test_get_shape_from_id(self) -> None:
        """Test case for get_shape_from_id

        Get the shape of the field data. That is it's size, origin, extent, times, and data identifiers.
        """
        pass

    def test_save(self) -> None:
        """Test case for save

        Take the generated field data, and save it to the server. User may adjust the analyzed file before uploading to edit defaults.
        """
        pass


if __name__ == '__main__':
    unittest.main()