返回 Skill 列表
extension
分类: 开发与工程无需 API Key

type-checking-vs-testing

在决定类型和测试时使用。在捕获逻辑错误时使用。在测试边界情况时使用。在构建测试套件时使用。在验证假设时使用。

person作者: jakexiaohubgithub

Understand the Relationship Between Type Checking and Unit Testing

Overview

Type checking and unit testing catch different kinds of errors. Type checking catches type mismatches at compile time. Unit testing catches logic errors and edge cases at runtime. They complement each other - types reduce the need for some tests, but can't replace tests for logic.

When to Use This Skill

  • Deciding between types and tests
  • Catching logic errors
  • Testing edge cases
  • Building test suites
  • Validating assumptions

The Iron Rule

Use types to catch type errors at compile time. Use tests to catch logic errors and edge cases at runtime. They complement each other.

Example

// Type checking catches:
function add(a: number, b: number): number {
  return a + b;
}

add(1, '2'); // Compile error - types don't match

// Tests catch:
function divide(a: number, b: number): number {
  return a / b; // Logic error: no check for division by zero
}

// Type system can't catch this - need tests:
test('divide by zero', () => {
  expect(() => divide(1, 0)).toThrow();
});

Reference

  • Effective TypeScript, 2nd Edition by Dan Vanderkam
  • Item 77: Understand the Relationship Between Type Checking and Unit Testing