mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 18:18:30 +08:00
21 lines
508 B
Python
21 lines
508 B
Python
import pytest
|
|
|
|
from base.client_base import TestcaseBase
|
|
|
|
prefix = "alias"
|
|
|
|
class TestAliasParams(TestcaseBase):
|
|
""" Test cases of alias interface parameters"""
|
|
pass
|
|
|
|
class TestAliasParamsInvalid(TestcaseBase):
|
|
""" Negative test cases of alias interface parameters"""
|
|
pass
|
|
|
|
class TestAliasOperation(TestcaseBase):
|
|
""" Test cases of alias interface operations"""
|
|
pass
|
|
|
|
class TestAliasOperationInvalid(TestcaseBase):
|
|
""" Negative test cases of alias interface operations"""
|
|
pass |