Skip to content

Commit

Permalink
update samples
Browse files Browse the repository at this point in the history
  • Loading branch information
changhc committed Jan 1, 2025
1 parent b37fe34 commit d8b9e09
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = AnotherFakeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_call_123_test_special_tags(self) -> None:
"""Test case for call_123_test_special_tags
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = DefaultApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_foo_get(self) -> None:
"""Test case for foo_get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = FakeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_fake_any_type_request_body(self) -> None:
"""Test case for fake_any_type_request_body
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = FakeClassnameTags123Api()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_test_classname(self) -> None:
"""Test case for test_classname
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = ImportTestDatetimeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_import_test_return_datetime(self) -> None:
"""Test case for import_test_return_datetime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = PetApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_add_pet(self) -> None:
"""Test case for add_pet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = StoreApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_delete_order(self) -> None:
"""Test case for delete_order
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = UserApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_create_user(self) -> None:
"""Test case for create_user
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = AnotherFakeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_call_123_test_special_tags(self) -> None:
"""Test case for call_123_test_special_tags
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = DefaultApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_foo_get(self) -> None:
"""Test case for foo_get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = FakeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_fake_any_type_request_body(self) -> None:
"""Test case for fake_any_type_request_body
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = FakeClassnameTags123Api()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_test_classname(self) -> None:
"""Test case for test_classname
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = ImportTestDatetimeApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_import_test_return_datetime(self) -> None:
"""Test case for import_test_return_datetime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = PetApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_add_pet(self) -> None:
"""Test case for add_pet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = StoreApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_delete_order(self) -> None:
"""Test case for delete_order
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None:
self.api = UserApi()

async def asyncTearDown(self) -> None:
pass
await self.api.api_client.close()

async def test_create_user(self) -> None:
"""Test case for create_user
Expand Down

0 comments on commit d8b9e09

Please sign in to comment.