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

Skip to content

Commit e62d0d3

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/add_debug_reporter
2 parents 04a337e + edb1706 commit e62d0d3

18 files changed

Lines changed: 36 additions & 0 deletions

.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: 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
# Introduction to utPLSQL
24

35
utPLSQL is a Unit Testing framework for Oracle PL/SQL.

docs/userguide/advanced_data_comparison.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
# Advanced data comparison
24

35
utPLSQL expectations incorporates advanced data comparison options when comparing compound data-types:

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.

docs/userguide/coverage.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
# Coverage
24
utPLSQL comes with a built-in coverage reporting engine. The code coverage reporting is based on the DBMS_PROFILER package provided with Oracle database.
35
Code coverage is gathered for the following source types:

0 commit comments

Comments
 (0)