This page is under construction. More content coming soon!
Why Organization Matters
A well-organized test suite is:- Easy to navigate: Find tests quickly
- Maintainable: Clear structure makes updates simple
- Scalable: Grows cleanly as product expands
- Collaborative: Team can work efficiently
Organization Methods
OneTest provides multiple ways to organize tests:Folders
Hierarchical structure for logical grouping
Tags
Flexible labels for categorization
Custom Fields
Product-specific metadata
Folder Structure Strategies
- By Feature
- By User Journey
- By Test Type
- Hybrid
Organize by Product Features
Recommended for most teams.- Mirrors product structure
- Easy for new team members
- Scales well
- May need reorganization after refactoring
Effective Tagging Strategy
Tags provide cross-cutting categorization:Priority Tags
Priority Tags
Test Type Tags
Test Type Tags
Platform Tags
Platform Tags
Feature Tags
Feature Tags
Sprint/Release Tags
Sprint/Release Tags
Status Tags
Status Tags
Naming Conventions
- Test Case Titles
- Folder Names
Clear, Descriptive Titles
Format:Verify [action] [condition] [expected result]✅ Good Examples
Verify user can login with valid credentialsVerify error message displays for invalid email formatVerify shopping cart updates when quantity is changedVerify checkout completes successfully with credit card
❌ Bad Examples
Login test← Too vagueTest #47← No contextCheck if it works← What is “it”?User does something and sees a thing← Too generic
- Start with action verb: “Verify”, “Validate”, “Confirm”
- Include condition being tested
- Be specific about expected outcome
- Keep under 80 characters if possible
Maintenance Best Practices
Regular Audits
Review test suite quarterly:
- Remove obsolete tests
- Update outdated tests
- Consolidate duplicates
- Fix organizational issues
Ownership
Assign test ownership:
- Feature teams own their feature tests
- QA owns smoke/regression suites
- Individuals own exploratory tests
Documentation
Document your structure:
- Create folder descriptions
- Define tag meanings
- Maintain test suite README
- Train new team members
Common Anti-Patterns
Too Many Levels
Too Many Levels
Problem: Deeply nested folders (>5 levels)Solution: Flatten structure, use tags for additional categorization
Inconsistent Organization
Inconsistent Organization
Problem: Some tests organized one way, others differentlySolution: Choose a strategy and stick to it. Migrate existing tests.
Tag Overload
Tag Overload
Problem: Too many tags (>10 per test)Solution: Use only meaningful tags. Remove redundant ones.
No Structure
No Structure
Problem: All tests in root folderSolution: Start organizing today! Create basic folders.

