Skip to content

Commit 47e82b0

Browse files
convert ResourceTest to Java, removing Xtend dependencies
1 parent 409dbb6 commit 47e82b0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sqldev/src/test/java/org/utplsql/sqldev/test/ResourceTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* Copyright 2018 Philipp Salvisberg <philipp.salvisberg@trivadis.com>
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -19,12 +19,12 @@
1919
import org.junit.Test;
2020
import org.utplsql.sqldev.resources.UtplsqlResources;
2121

22-
@SuppressWarnings("all")
2322
public class ResourceTest {
24-
@Test
25-
public void windowPathsLabel() {
26-
final String actual = UtplsqlResources.getString("WINDOW_PATHS_LABEL");
27-
final String expected = "utPLSQL paths";
28-
Assert.assertEquals(expected, actual);
29-
}
23+
24+
@Test
25+
public void windowPathsLabel() {
26+
final String actual = UtplsqlResources.getString("WINDOW_PATHS_LABEL");
27+
final String expected = "utPLSQL paths";
28+
Assert.assertEquals(expected, actual);
29+
}
3030
}

0 commit comments

Comments
 (0)