リスト 7.5


test/common/age_test.dart

import 'package:test/test.dart';
import 'lib/common/age.dart';

// リスト 7.5
void main() {
  test('0歳より歳をとっていて120歳未満', () {
    final age = Age(value: 50);
    expect(age.value, allOf([isPositive, lessThan(120)]));
  });
}