Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1819ca7

Browse filesBrowse files
Updated project version after build [skip ci]
1 parent 5241c43 commit 1819ca7
Copy full SHA for 1819ca7

19 files changed

+19
-19
lines changed

‎BUILD_NO

Copy file name to clipboard
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4198
1+
4206

‎docs/about/authors.md

Copy file name to clipboardExpand all lines: docs/about/authors.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
### utPLSQL v3 Major Contributors
44

‎docs/about/license.md

Copy file name to clipboardExpand all lines: docs/about/license.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# Version Information
44

‎docs/about/project-details.md

Copy file name to clipboardExpand all lines: docs/about/project-details.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# utPLSQL Project Details
44

‎docs/about/support.md

Copy file name to clipboardExpand all lines: docs/about/support.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# How to get support
44

‎docs/index.md

Copy file name to clipboardExpand all lines: docs/index.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
## What is utPLSQL
44

‎docs/userguide/advanced_data_comparison.md

Copy file name to clipboardExpand all lines: docs/userguide/advanced_data_comparison.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# Advanced data comparison
44

‎docs/userguide/annotations.md

Copy file name to clipboardExpand all lines: docs/userguide/annotations.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
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.
44
No additional configuration files or tables are needed for test cases. The annotation names are based on popular testing frameworks such as JUnit.

‎docs/userguide/best-practices.md

Copy file name to clipboardExpand all lines: docs/userguide/best-practices.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

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

‎docs/userguide/coverage.md

Copy file name to clipboardExpand all lines: docs/userguide/coverage.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
utPLSQL comes with a built-in coverage reporting engine. The code coverage reporting uses package DBMS_PROFILER (and DBMS_PLSQL_CODE_COVERAGE on Oracle database version 12.2 and above) provided with Oracle database.
44
Code coverage is gathered for the following source types:

‎docs/userguide/exception-reporting.md

Copy file name to clipboardExpand all lines: docs/userguide/exception-reporting.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
utPLSQL is responsible for handling exceptions wherever they occur in the test run. The framework is trapping most of the exceptions so that the test execution is not affected by individual tests or test packages throwing an exception.
44
The framework provides a full stacktrace for every exception that was thrown. The reported stacktrace does not include any utPLSQL library calls in it.

‎docs/userguide/expectations.md

Copy file name to clipboardExpand all lines: docs/userguide/expectations.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
## Expectation concepts
44

‎docs/userguide/getting-started.md

Copy file name to clipboardExpand all lines: docs/userguide/getting-started.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# Getting started with TDD and utPLSQL
44

‎docs/userguide/install.md

Copy file name to clipboardExpand all lines: docs/userguide/install.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
## Supported database versions
44

‎docs/userguide/querying_suites.md

Copy file name to clipboardExpand all lines: docs/userguide/querying_suites.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
## Obtaining information about suites
44

‎docs/userguide/reporters.md

Copy file name to clipboardExpand all lines: docs/userguide/reporters.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
utPLSQL provides several reporting formats. The sections below describe most of them.
44

‎docs/userguide/running-unit-tests.md

Copy file name to clipboardExpand all lines: docs/userguide/running-unit-tests.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
utPLSQL framework provides two main entry points to run unit tests from within the database:
44

‎docs/userguide/upgrade.md

Copy file name to clipboardExpand all lines: docs/userguide/upgrade.md
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-v3.1.14.4198--develop-blue.svg)
1+
![version](https://img.shields.io/badge/version-v3.1.14.4206--develop-blue.svg)
22

33
# Upgrading from version 2
44

‎source/core/ut_utils.pks

Copy file name to clipboardExpand all lines: source/core/ut_utils.pks
+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121
*
2222
*/
2323

24-
gc_version constant varchar2(50) := 'v3.1.14.4198-develop';
24+
gc_version constant varchar2(50) := 'v3.1.14.4206-develop';
2525

2626
subtype t_executable_type is varchar2(30);
2727
gc_before_all constant t_executable_type := 'beforeall';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.