Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis/update_project_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ echo Update version in project source files
find ${UTPLSQL_SOURCES_DIR} -type f -name '*' -exec sed -i -r "s/${UTPLSQL_VERSION_PATTERN}/${UTPLSQL_BUILD_VERSION}/" {} \;
echo Source files updated with version tag: ${UTPLSQL_BUILD_VERSION}

echo Update version in documentation files
find docs -type f -name '*.md' -exec sed -i -r "s/(badge\/version-).*(-blue\.svg)/\1${UTPLSQL_BUILD_VERSION/-/--}\2/" {} \;

echo Update of sonar-project.properties sonar.projectVersion
sed -i -r "s/(sonar\.projectVersion=).*?/\1${UTPLSQL_VERSION}/" sonar-project.properties

Expand Down
1 change: 1 addition & 0 deletions docs/about/authors.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

### utPLSQL v3 Major Contributors

Expand Down
2 changes: 2 additions & 0 deletions docs/about/license.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Version Information

**utPLSQL version 3** is licensed under
Expand Down
2 changes: 2 additions & 0 deletions docs/about/project-details.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# utPLSQL Project Details

[![chat](http://img.shields.io/badge/GitHub_Project-Active-blue.svg)](https://github.com/utPLSQL/utPLSQL)
Expand Down
2 changes: 2 additions & 0 deletions docs/about/support.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# How to get support

- Feel free to post questions, bugs or issues in the [issues area of GitHub](https://github.com/utPLSQL/utPLSQL/issues)
Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Introduction to utPLSQL

utPLSQL is a Unit Testing framework for Oracle PL/SQL.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/advanced_data_comparison.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Advanced data comparison

utPLSQL expectations incorporates advanced data comparison options when comparing compound data-types:
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/annotations.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Annotations

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.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/best-practices.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Best Practices

The following are best practices we at utPLSQL have learned about PL/SQL and Unit Testing.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/coverage.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Coverage
utPLSQL comes with a built-in coverage reporting engine. The code coverage reporting is based on the DBMS_PROFILER package provided with Oracle database.
Code coverage is gathered for the following source types:
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/exception-reporting.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Exception handling and reporting

The utPLSQL is responsible for handling exceptions wherever they occur in the test run. utPLSQL is trapping most of the exceptions so that the test execution is not affected by individual tests or test packages throwing an exception.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/expectations.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Expectation concepts
Validation of the code under test (the tested logic of procedure/function etc.) is performed by comparing the actual data against the expected data.
utPLSQL uses a combination of expectation and matcher to perform the check on the data.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Getting started with TDD and utPLSQL

utPLSQL is designed in a way that allows you to follow
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/install.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Downloading latest version of utPLSQL

To download latest version of utPLSQL from github on both Unix/Linux as well as Windows machines use the below smippets.
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/querying_suites.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Qyerying for test suites


Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/reporters.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

utPLSQL provides the following reporting formats.

# Documentation reporter
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/running-unit-tests.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Running tests

utPLSQL framework provides two main entry points to run unit tests from within the database:
Expand Down
2 changes: 2 additions & 0 deletions docs/userguide/upgrade.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![version](https://img.shields.io/badge/version-v3.1.4.2223--develop-blue.svg)

# Upgrading from version 2

utPLSQL v3 is a total rewrite of the framework.
Expand Down