test
Installation
SKILL.md
Test Generation Skill
Generate comprehensive tests for your code.
1. Unit Test Generation
Python (pytest):
import pytest
from mymodule import function_to_test
class TestFunctionName:
def test_normal_case(self):
result = function_to_test("input")
assert result == "expected"
def test_edge_case_empty(self):
result = function_to_test("")
assert result == ""