blob: ac5bcd5258b0dee3c3e316ec9a863ddeb1d43437 [file] [log] [blame]
package org.apache.servicecomb.toolkit.oasv.common;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class OasObjectPropertyLocationTest {
@Test
public void toPathString() {
assertEquals("$.foo.bar",
OasObjectPropertyLocation.toPathString(OasObjectPropertyLocation.root().property("foo").property("bar")));
assertEquals("", OasObjectPropertyLocation.toPathString(null));
}
}