# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 OpenAPI spec version: v1.15.3 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import unittest import kubernetes.client from kubernetes.client.api.storage_v1beta1_api import StorageV1beta1Api # noqa: E501 from kubernetes.client.rest import ApiException class TestStorageV1beta1Api(unittest.TestCase): """StorageV1beta1Api unit test stubs""" def setUp(self): self.api = kubernetes.client.api.storage_v1beta1_api.StorageV1beta1Api() # noqa: E501 def tearDown(self): pass def test_create_csi_driver(self): """Test case for create_csi_driver """ pass def test_create_csi_node(self): """Test case for create_csi_node """ pass def test_create_storage_class(self): """Test case for create_storage_class """ pass def test_create_volume_attachment(self): """Test case for create_volume_attachment """ pass def test_delete_collection_csi_driver(self): """Test case for delete_collection_csi_driver """ pass def test_delete_collection_csi_node(self): """Test case for delete_collection_csi_node """ pass def test_delete_collection_storage_class(self): """Test case for delete_collection_storage_class """ pass def test_delete_collection_volume_attachment(self): """Test case for delete_collection_volume_attachment """ pass def test_delete_csi_driver(self): """Test case for delete_csi_driver """ pass def test_delete_csi_node(self): """Test case for delete_csi_node """ pass def test_delete_storage_class(self): """Test case for delete_storage_class """ pass def test_delete_volume_attachment(self): """Test case for delete_volume_attachment """ pass def test_get_api_resources(self): """Test case for get_api_resources """ pass def test_list_csi_driver(self): """Test case for list_csi_driver """ pass def test_list_csi_node(self): """Test case for list_csi_node """ pass def test_list_storage_class(self): """Test case for list_storage_class """ pass def test_list_volume_attachment(self): """Test case for list_volume_attachment """ pass def test_patch_csi_driver(self): """Test case for patch_csi_driver """ pass def test_patch_csi_node(self): """Test case for patch_csi_node """ pass def test_patch_storage_class(self): """Test case for patch_storage_class """ pass def test_patch_volume_attachment(self): """Test case for patch_volume_attachment """ pass def test_read_csi_driver(self): """Test case for read_csi_driver """ pass def test_read_csi_node(self): """Test case for read_csi_node """ pass def test_read_storage_class(self): """Test case for read_storage_class """ pass def test_read_volume_attachment(self): """Test case for read_volume_attachment """ pass def test_replace_csi_driver(self): """Test case for replace_csi_driver """ pass def test_replace_csi_node(self): """Test case for replace_csi_node """ pass def test_replace_storage_class(self): """Test case for replace_storage_class """ pass def test_replace_volume_attachment(self): """Test case for replace_volume_attachment """ pass if __name__ == '__main__': unittest.main()