Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 409dbb6 commit 47e82b0Copy full SHA for 47e82b0
1 file changed
sqldev/src/test/java/org/utplsql/sqldev/test/ResourceTest.java
@@ -1,4 +1,4 @@
1
-/**
+/*
2
* Copyright 2018 Philipp Salvisberg <[email protected]>
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -19,12 +19,12 @@
19
import org.junit.Test;
20
import org.utplsql.sqldev.resources.UtplsqlResources;
21
22
-@SuppressWarnings("all")
23
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
- }
+
+ @Test
+ public void windowPathsLabel() {
+ final String actual = UtplsqlResources.getString("WINDOW_PATHS_LABEL");
+ final String expected = "utPLSQL paths";
+ Assert.assertEquals(expected, actual);
+ }
30
}
0 commit comments