Struct wiremock::matchers::QueryParamExactMatcher
source · pub struct QueryParamExactMatcher(_, _);
Expand description
Match exactly the query parameter of a request.
Example:
use wiremock::{MockServer, Mock, ResponseTemplate};
use wiremock::matchers::query_param;
#[async_std::main]
async fn main() {
// Arrange
let mock_server = MockServer::start().await;
Mock::given(query_param("hello", "world"))
.respond_with(ResponseTemplate::new(200))
.mount(&mock_server)
.await;
// Act
let status = surf::get(format!("{}?hello=world", &mock_server.uri()))
.await
.unwrap()
.status();
// Assert
assert_eq!(status, 200);
}
Implementations§
Trait Implementations§
source§impl Debug for QueryParamExactMatcher
impl Debug for QueryParamExactMatcher
Auto Trait Implementations§
impl RefUnwindSafe for QueryParamExactMatcher
impl Send for QueryParamExactMatcher
impl Sync for QueryParamExactMatcher
impl Unpin for QueryParamExactMatcher
impl UnwindSafe for QueryParamExactMatcher
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