Skip to content

Commit 5366dd3

Browse files
committed
Correct some errors
1 parent 7e32cba commit 5366dd3

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/About-wtPLSQL.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ The wtPLSQL project is an attempt to allow PL/SQL developers to be PL/SQL develo
3636

3737
The wtPLSQL framework includes provisions for the following errors during execution:
3838
* Un-handled test runner exceptions
39-
* Storage of a large test result sets
40-
* Isolation of test runner results during concurrent test runs.
39+
* Storage errors from too many old test result sets.
40+
* Isolation of different test runner results during concurrent test runs.
41+
* Missing or non-existent test runners.
42+
* Incorrect/incompatable DBMS_PROFILER version
4143

4244
### Dynamic Testing
4345
[Testing that takes place when the program itself is run.](https://en.wikipedia.org/wiki/Software_testing#Static_vs._dynamic_testing)
@@ -67,7 +69,7 @@ In the wtPLSQL framework, the DBOUT can be any of the following PL/SQL objects:
6769

6870
[Put Test Code in Same Package](https://utplsql.org/utPLSQL/v2.3.1/samepack.html)
6971

70-
With utPLSQL V1/V2, packages can include an embedded self-test. The required calls can be exposed within the package that is being tested. This is particularly useful for testing package internals like private variables and procedures. These embedded selftests also remove the need to expose private variables and procudures to public calls so they can be tested.
72+
With utPLSQL V1/V2, packages can include an embedded self-test. The required calls can be exposed within the package that is being tested. This is particularly useful for testing package internals like private variables and procedures. These embedded selftests also remove the need to expose private variables and procedures to public calls so they can be tested.
7173

7274
wtPLSQL continues this capability. However, with wtPLSQL, the addition of an embedded selftest requires only 1 additional procedure call in the package specification (WTPLSQL_RUN).
7375

@@ -102,7 +104,7 @@ In the wtPLSQL framework, integration testing of multiple database objects (no m
102104

103105
[A test suite is a set of tests that all share the same fixture.](https://en.wikipedia.org/wiki/XUnit#Test_suites)
104106

105-
Test fixtures and test suites are a part of the xUnit testing framework. At the core, wtPLSQL does not include test fixtures or test suites. If needed, these can be defined and implemented in a variety of ways.
107+
Test fixtures and test suites are a part of the xUnit testing framework. At the core, wtPLSQL does not include test fixtures or test suites. If needed, these can be easily defined and implemented in a test runner package.
106108

107109
## Test Driven Development
108110
With **TDD** (Test Driven Development), [you write a test before you write just enough production code to fulfill that test](http://agiledata.org/essays/tdd.html)

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ wtPLSQL has a different focus than utPLSQL V3. More information is available [i
8282
* [Core Features](Core-Features.md)
8383
* [About wtPLSQL](About-wtPLSQL.md)
8484
* [Best Practices](Best-Practices.md)
85-
* [Definitions](Definitions.md)
85+
* [Other Definitions](Other-Definitions.md)
8686
* [utPLSQL V3 Comparison](utPLSQL-V3-Comparison)
8787

8888
## Contribute

0 commit comments

Comments
 (0)