# Test Create

> Generate test cases for code. Use when writing unit tests, integration tests, or verifying acceptance criteria. Use when this capability is needed.

- Skill: `tomevault-io/test-create-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/test-create-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/test-create-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/test-create-2

---


# Create Tests

Generate comprehensive test cases for code.

## Test Categories

| Category | Examples |
|----------|----------|
| ✅ Happy Path | Normal inputs, standard cases |
| 🔸 Edge Cases | Empty, boundary, min/max |
| ❌ Error Cases | Invalid inputs, failures |

## Python (pytest)

```python
import pytest

class TestFunction:
    def test_valid_input_returns_expected(self):
        assert function("valid") == "expected"
    
    def test_empty_input_returns_empty(self):
        assert function("") == ""
    
    def test_invalid_raises_error(self):
        with pytest.raises(ValueError):
            function(None)
```

## JavaScript (Jest)

```javascript
describe('function', () => {
  it('returns expected for valid input', () => {
    expect(fn('valid')).toBe('expected');
  });

  it('handles empty input', () => {
    expect(fn('')).toBe('');
  });

  it('throws for invalid', () => {
    expect(() => fn(null)).toThrow();
  });
});
```

## Naming Convention

```
test_[what]_[condition]_[expected]

test_login_valid_credentials_returns_token
test_login_wrong_password_raises_error
```

## Coverage Goals

| Type | Target |
|------|--------|
| Business logic | 80%+ |
| Utilities | 90%+ |
| UI | 60%+ |

## Tips
- Test behavior, not implementation
- One assertion per test
- Mock external dependencies
- Keep tests fast

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/hscspring) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

