Skip to content

Commit 2ed09bc

Browse files
Deploy to gh-pages branch: base commit 25af9edbcd5b7a9627c667225105bf70ede6a010
1 parent e55ad44 commit 2ed09bc

18 files changed

+24
-24
lines changed

utPLSQL/develop/about/authors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
### utPLSQL v3 Major Contributors
44

utPLSQL/develop/about/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Version Information
44

utPLSQL/develop/about/project-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# utPLSQL Project Details
44

utPLSQL/develop/about/support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# How to get support
44

utPLSQL/develop/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Introduction to utPLSQL
44

@@ -31,7 +31,7 @@ The framework follows industry standards and best patterns of modern Unit Testin
3131

3232
Have a look at our [demo project](https://github.com/utPLSQL/utPLSQL-demo-project/).
3333

34-
It uses [Travis CI](https://travis-ci.org/utPLSQL/utPLSQL-demo-project) to build on every commit, runs all tests, publishes test results and code coverage to [SonarQube](https://sonarqube.com/dashboard?id=utPLSQL%3AutPLSQL-demo-project%3Adevelop).
34+
It uses [Travis CI](https://travis-ci.org/utPLSQL/utPLSQL-demo-project) to build on every commit, runs all tests, publishes test results and code coverage to [SonarCloud](https://sonarcloud.io/project/overview?id=utPLSQL:utPLSQL-demo-project).
3535

3636
# Three steps
3737

utPLSQL/develop/userguide/advanced_data_comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Advanced data comparison
44

utPLSQL/develop/userguide/annotations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Annotations
44

@@ -127,7 +127,7 @@ end;
127127
| `--%suite(<description>)` | Package | Mandatory. Marks package as a test suite. Optional suite description can be provided (see `displayname`). |
128128
| `--%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarchies. |
129129
| `--%displayname(<description>)` | Package/procedure | Human-readable and meaningful description of a context/suite/test. Overrides the `<description>` provided with `suite`/`test`/`context` annotation. This annotation is redundant and might be removed in future releases. |
130-
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see `displayname`). |
130+
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can be provided (see `displayname`). |
131131
| `--%throws(<exception>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric constant names, exception constant names, predefined Oracle exception names. |
132132
| `--%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the suite. |
133133
| `--%beforeall([[<owner>.]<package>.]<procedure>[,...])` | Package | Denotes that the mentioned procedure(s) should be executed once before all elements of the suite. |

utPLSQL/develop/userguide/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Best Practices
44

utPLSQL/develop/userguide/coverage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Coverage
44
utPLSQL comes with a built-in coverage reporting engine. The code coverage reporting uses DBMS_PROFILER package provided with Oracle database.
@@ -17,7 +17,7 @@ To obtain information about code coverage for unit tests, run utPLSQL with one o
1717
The following code coverage reporters are supplied with utPLSQL:
1818
* `ut_coverage_html_reporter` - generates a HTML coverage report providing summary and detailed information on code coverage. The HTML reporter is based on the open-source [simplecov-html](https://github.com/colszowka/simplecov-html) reporter for Ruby. It includes source code of the code that was covered (if possible)
1919
* `ut_coveralls_reporter` - generates a [Coveralls compatible JSON](https://coveralls.zendesk.com/hc/en-us/articles/201774865-API-Introduction) coverage report providing detailed information on code coverage with line numbers. This coverage report is designed to be consumed by cloud services like [Coveralls](https://coveralls.io)
20-
* `ut_coverage_sonar_reporter` - generates a [Sonar Compatible XML](https://docs.sonarqube.org/display/SONAR/Generic+Test+Data) coverage report providing detailed information on code coverage with line numbers. This coverage report is designed to be consumed by services like [SonarQube/SonarCloud](https://about.sonarcloud.io/)
20+
* `ut_coverage_sonar_reporter` - generates a [Sonar Compatible XML](https://docs.sonarqube.org/latest/analysis/generic-test/) coverage report providing detailed information on code coverage with line numbers. This coverage report is designed to be consumed by services like [SonarQube](https://www.sonarqube.org/) and [SonarCloud](https://about.sonarcloud.io/)
2121
* `ut_coverage_cobertura_reporter` - generates a basic Cobertura coverage (http://cobertura.sourceforge.net/xml/coverage-04.dtd) report providing detailed information on code coverage with line numbers. This coverage report is designed to be consumed by services like TFS and Jenkins. Check this link for an example of XML generated by Java: https://raw.githubusercontent.com/jenkinsci/cobertura-plugin/master/src/test/resources/hudson/plugins/cobertura/coverage-with-data.xml
2222

2323
## Security model

utPLSQL/develop/userguide/exception-reporting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.13.3896--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.13.3905--develop-blue.svg)
22

33
# Exception handling and reporting
44

0 commit comments

Comments
 (0)