""" ParallelCluster ParallelCluster API # noqa: E501 The version of the OpenAPI document: 3.0.0 Generated by: https://openapi-generator.tech """ import unittest import pcluster.client from pcluster.client.api.cluster_operations_api import ClusterOperationsApi # noqa: E501 class TestClusterOperationsApi(unittest.TestCase): """ClusterOperationsApi unit test stubs""" def setUp(self): self.api = ClusterOperationsApi() # noqa: E501 def tearDown(self): pass def test_create_cluster(self): """Test case for create_cluster """ pass def test_delete_cluster(self): """Test case for delete_cluster """ pass def test_describe_cluster(self): """Test case for describe_cluster """ pass def test_list_clusters(self): """Test case for list_clusters """ pass def test_update_cluster(self): """Test case for update_cluster """ pass if __name__ == '__main__': unittest.main()