aboutsummaryrefslogtreecommitdiffstats
path: root/tests/projects
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-07-05 11:14:58 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-07-05 16:51:11 +0200
commitfd4e7efe96826908cf443fb567e89e8dc2e6dd51 (patch)
treebf4df5c91d8efd71872d39238a4bb3bcf68471ce /tests/projects
parent44023b33d97d874e79ecd11efe745f004063e8b7 (diff)
downloadsonarqube-fd4e7efe96826908cf443fb567e89e8dc2e6dd51.tar.gz
sonarqube-fd4e7efe96826908cf443fb567e89e8dc2e6dd51.zip
Re-enable and complete PLI and PLSQL tests
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/plugins/project/src/plsql/has-issues.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/plugins/project/src/plsql/has-issues.sql b/tests/projects/plugins/project/src/plsql/has-issues.sql
new file mode 100644
index 00000000000..29a74b1d962
--- /dev/null
+++ b/tests/projects/plugins/project/src/plsql/has-issues.sql
@@ -0,0 +1,9 @@
+-- plsql:SingleLineCommentsSyntaxCheck
+/* single line comment */
+
+-- plsql:UpperCaseReservedWordsCheck
+create TABLE ut_suite (
+ id INTEGER, -- comment
+ -- plsql:CharVarchar
+ name char(1)
+);