Skip to content

Commit d04d827

Browse files
author
Travis CI
committed
Deploy to gh-pages branch: base commit ea4c9fb851f00de72a97d8282283e1d0f84a6193
1 parent 3c70e1c commit d04d827

18 files changed

Lines changed: 29 additions & 24 deletions

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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--develop-blue.svg)
22

33
# Introduction to utPLSQL
44

@@ -57,7 +57,7 @@ Amongst many benefits they provide ability to:
5757
* use many reporting formats simultaneously and save reports to files (publish)
5858
* map your project source files and test files into database objects
5959

60-
Just download the [latest client](https://github.com/utPLSQL/utPLSQL-cli/releases/latest), download Oracle jdbc driver you are good to go.
60+
Download the [latest client](https://github.com/utPLSQL/utPLSQL-cli/releases/latest) and you are good to go.
6161
See [project readme](https://github.com/utPLSQL/utPLSQL-cli/blob/develop/README.md) for details.
6262

6363
# Coverage

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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--develop-blue.svg)
22

33
# Advanced data comparison
44

utPLSQL/develop/userguide/annotations.md

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

33
# Annotations
44

@@ -2064,9 +2064,15 @@ When processing the test suite `test_employee_pkg` defined in [Example of annota
20642064
20652065
## sys_context
20662066

2067-
It is possible to access information about currently running suite, test and befire/after procedure form within PLSQL procedure using SYS_CONTEXT.
2068-
2067+
It is possible to access information about currently running suite.
20692068
The information is available by calling `sys_context( 'UT3_INFO', attribute )`.
2069+
It can be accessed from any procecure invoked as part of utPLSQL test execution.
2070+
2071+
**Note:**
2072+
> Context name is derived from schema name where utPLSQL is installed.
2073+
> The context name in below examples represents the default install schema -> `UT3`
2074+
> If you install utPLSQL into another schema the context name will be different.
2075+
> For example if utPLSQL is installed into `HR` schema, the context name will be `HR_INFO`
20702076
20712077
Following attributes are populated:
20722078
- Always:

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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--develop-blue.svg)
22

33
# Coverage
44
utPLSQL comes with a built-in coverage reporting engine. The code coverage reporting is based on the DBMS_PROFILER package provided with Oracle database.
@@ -243,7 +243,7 @@ By default, utPLSQL will convert file paths into database objects using the foll
243243
> This is done to simplify the syntax of regular expressions. Regular expression will always use '/' as a directory separator on a file path regardless of whether you're on a Windows or Unix system.
244244
245245
**Note**
246-
> Below examples assume that you have downloaded latest version of [utPLSQL-cli](https://github.com/utPLSQL/utPLSQL-cli/releases), extracted it into your projects root directory (my_project) and placed ojdbc8.jar and orai18n.jar files in utPLSQL-cli\lib directory.
246+
> Below examples assume that you have downloaded latest version of [utPLSQL-cli](https://github.com/utPLSQL/utPLSQL-cli/releases) and extracted it into your projects root directory (my_project).
247247
> The examples assume that you run the utPLSQL-cli from `my_project` directory.
248248
249249
Windows:

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.11.3357--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.11.3367--develop-blue.svg)
22

33
# Exception handling and reporting
44

0 commit comments

Comments
 (0)