Get rid of deprecated annotations and modifiers in stdlib (besides JS)
This commit is contained in:
@@ -7,7 +7,7 @@ import org.junit.Test as test
|
||||
|
||||
class DomBuilderTest() {
|
||||
|
||||
test fun buildDocument() {
|
||||
@test fun buildDocument() {
|
||||
var doc = createDocument()
|
||||
|
||||
assertTrue {
|
||||
|
||||
@@ -8,7 +8,7 @@ import org.junit.Test as test
|
||||
|
||||
class DomTest {
|
||||
|
||||
test fun testCreateDocument() {
|
||||
@test fun testCreateDocument() {
|
||||
var doc = createDocument()
|
||||
assertNotNull(doc, "Should have created a document")
|
||||
|
||||
@@ -27,7 +27,7 @@ class DomTest {
|
||||
println("document ${doc.toXmlString()}")
|
||||
}
|
||||
|
||||
test fun addText() {
|
||||
@test fun addText() {
|
||||
var doc = createDocument()
|
||||
assertNotNull(doc, "Should have created a document")
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import org.junit.Test as test
|
||||
|
||||
class NextSiblingTest {
|
||||
|
||||
test fun nextSibling() {
|
||||
@test fun nextSibling() {
|
||||
val doc = createDocument()
|
||||
|
||||
doc.addElement("foo") {
|
||||
|
||||
Reference in New Issue
Block a user