Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95d9507

Browse files
committed
Merge branch 'develop' of https://github.com/utPLSQL/utPLSQL into fix/cursor_error_handling
2 parents 7a48278 + 64a4581 commit 95d9507

68 files changed

Lines changed: 896 additions & 355 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ coverage.xml
2727
tfs_test_results.xml
2828
junit_test_results.xml
2929
test_results.xml
30+
*debug*.xml

.travis/update_project_version.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ echo Update version in project source files
66
find ${UTPLSQL_SOURCES_DIR} -type f -name '*' -exec sed -i -r "s/${UTPLSQL_VERSION_PATTERN}/${UTPLSQL_BUILD_VERSION}/" {} \;
77
echo Source files updated with version tag: ${UTPLSQL_BUILD_VERSION}
88

9+
echo Update version in documentation files
10+
find docs -type f -name '*.md' -exec sed -i -r "s/(badge\/version-).*(-blue\.svg)/\1${UTPLSQL_BUILD_VERSION/-/--}\2/" {} \;
11+
912
echo Update of sonar-project.properties sonar.projectVersion
1013
sed -i -r "s/(sonar\.projectVersion=).*?/\1${UTPLSQL_VERSION}/" sonar-project.properties
1114

docs/about/authors.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
12

23
### utPLSQL v3 Major Contributors
34

docs/about/license.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# Version Information
24

35
**utPLSQL version 3** is licensed under

docs/about/project-details.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# utPLSQL Project Details
24

35
[![chat](http://img.shields.io/badge/GitHub_Project-Active-blue.svg)](https://github.com/utPLSQL/utPLSQL)

docs/about/support.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# How to get support
24

35
- Feel free to post questions, bugs or issues in the [issues area of GitHub](https://github.com/utPLSQL/utPLSQL/issues)

docs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# Introduction to utPLSQL
24

35
utPLSQL is a Unit Testing framework for Oracle PL/SQL.
@@ -11,7 +13,7 @@ The framework follows industry standards and best patterns of modern Unit Testin
1113
- [Advanced data comparison](userguide/advanced_data_comparison.md)
1214
- [Running unit tests](userguide/running-unit-tests.md)
1315
- [Querying for test suites](userguide/querying_suites.md)
14-
- [Testing best pracitces](userguide/best-practices.md)
16+
- [Testing best practices](userguide/best-practices.md)
1517
- [Upgrade utPLSQL](userguide/upgrade.md)
1618
- Reporting
1719
- [Using reporters](userguide/reporters.md)

docs/userguide/advanced_data_comparison.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# Advanced data comparison
24

35
utPLSQL expectations incorporates advanced data comparison options when comparing compound data-types:
@@ -6,7 +8,7 @@ utPLSQL expectations incorporates advanced data comparison options when comparin
68
- object type
79
- nested table and varray
810

9-
Advanced data-comparison options are available for the [`equal`](expectations.md#equal) and [`include / contain`](expectations.md#include--contain) matcher.
11+
Advanced data-comparison options are available for the [`equal`](expectations.md#equal) and [`contain`](expectations.md#include--contain) matcher.
1012

1113
## Syntax
1214

@@ -164,7 +166,7 @@ Above test will result in two differences of one row extra and one row missing.
164166

165167
**Note**
166168

167-
> `include / contain` matcher is not considering order of compared data-sets. Using `unordered` makes no difference (it's default)
169+
> `contain` matcher is not considering order of compared data-sets. Using `unordered` makes no difference (it's default)
168170
169171

170172
## Join By option
@@ -375,10 +377,10 @@ end;
375377

376378
## Unordered columns / uc option
377379

378-
If you need to perform data comparison of cursors without strictly deending on column order in the returned result-set, use the `unordered_columns` option.
380+
If you need to perform data comparison of compound data types without strictly depending on column order in the returned result-set, use the `unordered_columns` option.
379381
Shortcut name `uc` is also available for that option.
380382

381-
Expectations that compare cursor data with `unordered_Columns` option, will not fail when columns are ordered differently.
383+
Expectations that compare compound data type data with `unordered_columns` option, will not fail when columns are ordered differently.
382384

383385
This option can be useful whn we have no control over the ordering of the column or the column order is not of importance from testing perspective.
384386

docs/userguide/annotations.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# Annotations
24

35
Annotations are used to configure tests and suites in a declarative way similar to modern OOP languages. This way, test configuration is stored along with the test logic inside the test package.

docs/userguide/best-practices.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)
2+
13
# Best Practices
24

35
The following are best practices we at utPLSQL have learned about PL/SQL and Unit Testing.

0 commit comments

Comments
 (0)