Skip to content
Novus Examples
md1.9 KB

Test Plan — Release Plan for a SAMPLE Service (Markdown)

A complete release test plan for the fictional Novus Checkout Service — scope, test levels, entry and exit criteria, a risk table and deliverables. Useful as a Markdown-rendering fixture with three tables and nested lists, and as a realistic input for documentation tooling that has to extract structure from prose.

Preview — first 49 linesmd
# Test Plan — Novus Checkout Service, release 2026.08

**Status:** SAMPLE document for a fictional service. Every name, system and defect here is invented.

## 1. Scope

In scope: cart pricing, discount stacking, tax calculation, session persistence, receipt
rendering, and the payment capture call to the fictional gateway at `payments.example.com`.

Out of scope: the catalogue service, the partner loyalty API (stubbed in every environment), and
anything behind the `@wip` tag.

## 2. Test levels

| Level | Owner | Tooling | Gate |
| --- | --- | --- | --- |
| Unit | Engineering | JUnit XML, LCOV | 80% line coverage |
| Contract | Engineering | Cucumber, JSON schema | all scenarios green |
| Integration | QA | Robot Framework | no P1 or P2 defects open |
| Performance | QA | Load generator, HAR capture | p95 under 500 ms |
| Exploratory | QA | Session notes | charter completed |

## 3. Entry criteria

1. The build is green on the default branch.
2. Coverage is at or above the gate in `coverage-gate-config.json`.
3. No test is quarantined for more than five consecutive builds.

## 4. Exit criteria

1. Every requirement in the traceability matrix has at least one passing test.
2. No open defect at severity P1 or P2.
3. The flake rate across the last twenty builds is below 2%.

## 5. Risks

| Risk | Likelihood | Impact | Mitigation |
| --- | --- | --- | --- |
| Rounding differs between the pricing service and the receipt renderer | Medium | High | Shared rounding fixture, asserted in both suites |
| Payment gateway timeouts leak into unit runs | Medium | Medium | Network calls blocked in the unit profile |
| Flaky session-expiry test masks a real regression | High | High | Quarantine after two failures, tracked as a defect |

## 6. Deliverables

- JUnit XML per suite and a merged aggregate report
- LCOV tracefile plus a Cobertura twin for the dashboard
- HAR capture of one full checkout journey
- This plan, the test-case matrix, and the traceability matrix

Specifications

Seed
61200
Sections
6
Tables
3
Flavour
GitHub-flavoured Markdown
Fictional
true
Line Endings
LF

Testing contract

Reference control
Scenario
Render or extract structure from a multi-section Markdown test plan.
Expected result
Six numbered sections and three tables are found, and the exit criteria list parses as three ordered items.

What is a .md file?

Markdown (MD) is a lightweight plain-text markup language that uses simple punctuation conventions to denote headings, lists, links, emphasis, and code. It is designed to be readable as-is and to convert cleanly to HTML. It is widely used for documentation, READMEs, and content authoring.

How to use this file

Use an example Markdown file to test parsers and renderers, verify GitHub-Flavored Markdown extensions like tables and fenced code, and exercise HTML-conversion pipelines.

How to use this file for testing

“Test Plan — Release Plan for a SAMPLE Service (Markdown)” is a deterministic Novus Examples fixture for Editor testing, Conversion testing, Config testing. Text-based files you can open, edit, and download directly in the browser editor.

Documented properties for this file: seed 61200 · LF. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Test and coverage reports document their totals (suites, cases, passes, failures, skips, covered lines) in the spec table. Point your CI dashboard, coverage gate, or report converter at the file and assert those counts survive; format twins carry identical numbers so a conversion can be scored exactly.

Code examples

import markdown  # pip install markdown

html = markdown.markdown(open("test-plan.md").read())
print(html[:200])

Generated by generation/testing.py. Free for any use, no attribution required — license.