pub struct TestSuite {
config: String,
}Fields§
§config: StringImplementations§
Source§impl TestSuite
impl TestSuite
pub fn new( db_name: String, user_name: String, server_host: String, server_port: u16, password: String, ) -> Self
fn init_logger()
pub async fn test(&self) -> Result<()>
async fn create_client(&self, is_distributed: bool) -> Result<Client>
pub async fn binary_param_and_result(&self) -> Result<()>
async fn dql_dml_with_param(&self) -> Result<()>
async fn max_row(&self) -> Result<()>
async fn multiple_on_going_portal(&self) -> Result<()>
async fn create_with_parameter(&self) -> Result<()>
async fn create_mview_with_parameter(&self) -> Result<()>
async fn simple_cancel(&self, is_distributed: bool) -> Result<()>
async fn complex_cancel(&self, is_distributed: bool) -> Result<()>
async fn subscription_fetch_cancel(&self, is_distributed: bool) -> Result<()>
async fn subquery_with_param(&self) -> Result<()>
Auto Trait Implementations§
impl Freeze for TestSuite
impl RefUnwindSafe for TestSuite
impl Send for TestSuite
impl Sync for TestSuite
impl Unpin for TestSuite
impl UnsafeUnpin for TestSuite
impl UnwindSafe for TestSuite
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more