mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 10:08:42 +08:00
13 lines
314 B
Python
13 lines
314 B
Python
import pytest
|
|
from base.client_request import ApiReq
|
|
from utils.util_log import test_log as log
|
|
from common.common_type import *
|
|
|
|
|
|
class TestUtility(ApiReq):
|
|
""" Test case of utility interface """
|
|
|
|
@pytest.mark.tags(CaseLabel.L3)
|
|
def test_case(self):
|
|
log.info("Test case of utility interface")
|