8000 terminate sentence in snippet description with period · srinirama/utPLSQL-SQLDeveloper@bc740dd · GitHub
[go: up one dir, main page]

Skip to content

Commit bc740dd

Browse files
terminate sentence in snippet description with period
1 parent b033649 commit bc740dd

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

sqldev/src/main/resources/org/utplsql/sqldev/resources/UtplsqlSnippets.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<![CDATA[--%displayname(<description>)]]>
1717
</code>
1818
</snippet>
19-
<snippet name="test" description="Procedure level. Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see displayname).">
19+
<snippet name="test" description="Procedure level. Denotes that the annotated procedure is a unit test procedure. Optional test description can be provided (see displayname).">
2020
<code>
2121
<![CDATA[--%test(<description>)]]>
2222
</code>
@@ -71,12 +71,12 @@
7171
<![CDATA[--%beforetest([[<owner>.]<package>.]<procedure>[,...])]]>
7272
</code>
7373
</snippet>
74-
<snippet name="aftertest" description="Procedure level. Denotes that mentioned procedure(s) should be executed after the annotated %test procedure">
74+
<snippet name="aftertest" description="Procedure level. Denotes that mentioned procedure(s) should be executed after the annotated %test procedure.">
7575
<code>
7676
<![CDATA[--%aftertest([[<owner>.]<package>.]<procedure>[,...])]]>
7777
</code>
7878
</snippet>
79-
<snippet name="rollback" description="Package/procedure level. Defines transaction control. Supported values: auto(default) - a savepoint is created before invocation of each “before block” is and a rollback to specific savepoint is issued after each “after” block; manual - rollback is never issued automatically">
79+
<snippet name="rollback" description="Package/procedure level. Defines transaction control. Supported values: auto(default) - a savepoint is created before invocation of each “before block” is and a rollback to specific savepoint is issued after each “after” block; manual - rollback is never issued automatically.">
8080
<code>
8181
<![CDATA[--%rollback(<type>)]]>
8282
</code>
@@ -86,17 +86,18 @@
8686
<![CDATA[--%disabled(<reason>)]]>
8787
</code>
8888
</snippet>
89-
<snippet name="context" description="Package level. Denotes start of a named context (sub-suite) in a suite package">
89+
<snippet name="context" description="Package level. Denotes start of a named context (sub-suite) in a suite package.">
9090
<code>
9191
<![CDATA[--%context(<name>)]]>
9292
</code>
9393
</snippet>
94-
<snippet name="endcontext" description="Package level. Denotes end of a nested context (sub-suite) in a suite package">
94+
<snippet name="name" description="Package level. Denotes name for a context. Must be placed after the context annotation and before start of nested context.">
9595
<code>
96+
<snippet name="endcontext" description="Package level. Denotes end of a nested context (sub-suite) in a suite package.">
9697
<![CDATA[--%endcontext]]>
9798
</code>
9899
</snippet>
99-
<snippet name="tags" description="Package/procedure level. Used to label a test or a suite for purpose of identification">
100+
<snippet name="tags" description="Package/procedure level. Used to label a test or a suite for purpose of identification.">
100101
<code>
101102
<![CDATA[--%tags]]>
102103
</code>
@@ -108,7 +109,7 @@
108109
<![CDATA[ut.expect(n1).to_be_between(n2);]]>
109110
</code>
110111
</snippet>
111-
<snippet name="be_empty" description="Unary matcher that validates if the provided dataset is empty">
112+
<snippet name="be_empty" description="Unary matcher that validates if the provided dataset is empty.">
112113
<code>
113114
<![CDATA[ut.expect(n).to_be_empty();]]>
114115
</code>
@@ -230,7 +231,7 @@
230231
</snippet>
231232
<snippet name="not_to_contain" description="This matcher supports only compound data comparison. It check if the give set not contain all values from given subset.">
232233
<code>
233-
<![CDATA[ut.expect(n1).not_to_contain(n2);]]>
234+
<snippet name="not_to_be_within_pct" description="Determines whether actual value is not within percentage range of expected value. The matcher only works with number data-type.">
234235
</code>
235236
</snippet>
236237
<snippet name=".include" description="Valid only for compound data types. Item, comma separated list of items or table of items to include">

0 commit comments

Comments
 (0)
0