JsonPath仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
804 B

package com.jayway.jsonpath.matchers;
import org.junit.Test;
import static com.jayway.jsonpath.matchers.JsonPathMatchers.hasNoJsonPath;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.assertThat;
public class HasNoJsonPathTest {
private static final String JSON_STRING = "{" +
"\"name\": \"Jessie\"" +
"}";
@Test
public void shouldMatchMissingJsonPath() {
assertThat(JSON_STRING, hasNoJsonPath("$.not_there"));
}
@Test
public void shouldNotMatchExistingJsonPath() {
assertThat(JSON_STRING, not(hasNoJsonPath("$.name")));
}
@Test
public void shouldBeDescriptive() {
assertThat(hasNoJsonPath("$.name"),
hasToString(equalTo("is json without json path \"$['name']\"")));
}
}