|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2016 the original author or authors. |
|
|
|
* Copyright 2002-2019 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -50,7 +50,7 @@ public class SimpleNamespaceContextTests { |
|
|
|
@Test |
|
|
|
@Test |
|
|
|
public void getNamespaceURI() { |
|
|
|
public void getNamespaceURI() { |
|
|
|
context.bindNamespaceUri(XMLConstants.XMLNS_ATTRIBUTE, additionalNamespaceUri); |
|
|
|
context.bindNamespaceUri(XMLConstants.XMLNS_ATTRIBUTE, additionalNamespaceUri); |
|
|
|
assertThat("Always returns \"https://www.w3.org/2000/xmlns/\" for \"xmlns\"", |
|
|
|
assertThat("Always returns \"http://www.w3.org/2000/xmlns/\" for \"xmlns\"", |
|
|
|
context.getNamespaceURI(XMLConstants.XMLNS_ATTRIBUTE), is(XMLConstants.XMLNS_ATTRIBUTE_NS_URI)); |
|
|
|
context.getNamespaceURI(XMLConstants.XMLNS_ATTRIBUTE), is(XMLConstants.XMLNS_ATTRIBUTE_NS_URI)); |
|
|
|
context.bindNamespaceUri(XMLConstants.XML_NS_PREFIX, additionalNamespaceUri); |
|
|
|
context.bindNamespaceUri(XMLConstants.XML_NS_PREFIX, additionalNamespaceUri); |
|
|
|
assertThat("Always returns \"http://www.w3.org/XML/1998/namespace\" for \"xml\"", |
|
|
|
assertThat("Always returns \"http://www.w3.org/XML/1998/namespace\" for \"xml\"", |
|
|
|
@ -76,7 +76,7 @@ public class SimpleNamespaceContextTests { |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
@Test |
|
|
|
public void getPrefix() { |
|
|
|
public void getPrefix() { |
|
|
|
assertThat("Always returns \"xmlns\" for \"https://www.w3.org/2000/xmlns/\"", |
|
|
|
assertThat("Always returns \"xmlns\" for \"http://www.w3.org/2000/xmlns/\"", |
|
|
|
context.getPrefix(XMLConstants.XMLNS_ATTRIBUTE_NS_URI), is(XMLConstants.XMLNS_ATTRIBUTE)); |
|
|
|
context.getPrefix(XMLConstants.XMLNS_ATTRIBUTE_NS_URI), is(XMLConstants.XMLNS_ATTRIBUTE)); |
|
|
|
assertThat("Always returns \"xml\" for \"http://www.w3.org/XML/1998/namespace\"", |
|
|
|
assertThat("Always returns \"xml\" for \"http://www.w3.org/XML/1998/namespace\"", |
|
|
|
context.getPrefix(XMLConstants.XML_NS_URI), is(XMLConstants.XML_NS_PREFIX)); |
|
|
|
context.getPrefix(XMLConstants.XML_NS_URI), is(XMLConstants.XML_NS_PREFIX)); |
|
|
|
@ -103,7 +103,7 @@ public class SimpleNamespaceContextTests { |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
@Test |
|
|
|
public void getPrefixes() { |
|
|
|
public void getPrefixes() { |
|
|
|
assertThat("Returns only \"xmlns\" for \"https://www.w3.org/2000/xmlns/\"", |
|
|
|
assertThat("Returns only \"xmlns\" for \"http://www.w3.org/2000/xmlns/\"", |
|
|
|
getItemSet(context.getPrefixes(XMLConstants.XMLNS_ATTRIBUTE_NS_URI)), |
|
|
|
getItemSet(context.getPrefixes(XMLConstants.XMLNS_ATTRIBUTE_NS_URI)), |
|
|
|
is(makeSet(XMLConstants.XMLNS_ATTRIBUTE))); |
|
|
|
is(makeSet(XMLConstants.XMLNS_ATTRIBUTE))); |
|
|
|
assertThat("Returns only \"xml\" for \"http://www.w3.org/XML/1998/namespace\"", |
|
|
|
assertThat("Returns only \"xml\" for \"http://www.w3.org/XML/1998/namespace\"", |
|
|
|
|