AgentSkillsCN

test-create

为代码生成测试用例。适用于编写单元测试、集成测试,或验证验收标准时使用。

SKILL.md
--- frontmatter
name: test-create
description: Generate test cases for code. Use when writing unit tests, integration tests, or verifying acceptance criteria.

Create Tests

Generate comprehensive test cases for code.

Test Categories

CategoryExamples
✅ Happy PathNormal inputs, standard cases
🔸 Edge CasesEmpty, boundary, min/max
❌ Error CasesInvalid 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

code
test_[what]_[condition]_[expected]

test_login_valid_credentials_returns_token
test_login_wrong_password_raises_error

Coverage Goals

TypeTarget
Business logic80%+
Utilities90%+
UI60%+

Tips

  • Test behavior, not implementation
  • One assertion per test
  • Mock external dependencies
  • Keep tests fast