A curated collection of manual software testing artifacts authored by an SQA Engineer. This repository demonstrates end-to-end manual quality assurance work — test case design, defect reporting, test planning, requirement traceability, and exploratory testing — across three real-world style products spanning web and mobile platforms.
The goal is to showcase practical, structured, and recruiter-friendly QA documentation that reflects how testing is performed on production-grade applications.
- Handman — A service marketplace (web & mobile) connecting customers with local service providers for booking, scheduling, and payments.
- Africa Travel Hub — A travel booking platform for flights, hotels, tours, and itineraries across African destinations.
- Wanyumba — A property and real estate platform for listing, searching, and managing residential and commercial properties.
- Functional Testing — Verifying features behave according to requirements.
- Regression Testing — Ensuring existing functionality is unaffected by new changes.
- Exploratory Testing — Charter-based, session-driven investigation of the application.
- Negative Testing — Validating behavior with invalid, unexpected, or malformed inputs.
- Boundary Value Analysis (BVA) — Testing values at and around input boundaries.
- Equivalence Partitioning — Grouping inputs into valid/invalid classes for efficient coverage.
- UI Testing — Verifying layout, responsiveness, and visual consistency.
- Security Testing — Checking authentication, authorization, and common vulnerabilities.
- Jira — Test management, defect tracking, and reporting.
- Postman — Manual API testing and request validation.
- SQL — Database verification and back-end data validation.
- GitHub — Version control and documentation hosting.
- Chrome DevTools — Network, console, and front-end debugging.
- Browser DevTools — Cross-browser inspection and responsive testing.
Test-Cases-Repository/
├── README.md
├── templates/
│ ├── Test-Case-Template.md
│ └── Bug-Report-Template.md
├── docs/
│ ├── Test-Plan.md
│ ├── Traceability-Matrix.md
│ └── Test-Summary-Report.md
├── Handman/
│ ├── functional/
│ ├── regression/
│ └── exploratory-charters/
├── Africa-Travel-Hub/
│ ├── functional/
│ ├── regression/
│ └── exploratory-charters/
└── Wanyumba/
├── functional/
├── regression/
└── exploratory-charters/
- templates/ — Reusable test case and bug report templates.
- docs/ — Test plan, requirements traceability matrix, and test summary report.
- Handman / Africa-Travel-Hub / Wanyumba/ — Per-project test artifacts, each organized
into
functional/,regression/, andexploratory-charters/.
Test cases are created for portfolio purposes and do not contain confidential company information.