Skip to content

Zion8a/test-techniques-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test Techniques Demo

A portfolio project that demonstrates practical software testing skills using Java, Maven, and JUnit 5.

Purpose

This project shows how classic test design techniques can be translated into automated tests.

The current version focuses on small rule-based examples and demonstrates:

  • equivalence partitioning
  • boundary value analysis
  • invalid input testing
  • parameterized tests in JUnit 5

Project Structure

test-techniques-demo/
├─ pom.xml
├─ README.md
├─ docs/
│  ├─ boundary-value-analysis.md
│  ├─ equivalence-partitioning.md
│  └─ test-design.md
├─ src/
│  ├─ main/
│  │  └─ java/
│  │     └─ org/example/
│  │        ├─ AgeCategoryClassifier.java
│  │        ├─ BmiCategoryClassifier.java
│  │        └─ Main.java
│  └─ test/
│     └─ java/
│        └─ org/example/
│           ├─ AgeCategoryClassifierTest.java
│           └─ BmiCategoryClassifierTest.java

About

QA portfolio project showing equivalence partitioning, boundary value analysis, and automated testing with Java, Maven, and JUnit 5.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages