Back to all

test-quality-enforcement

by reis gordon

00Feb 7, 2026Visit Source
// ❌ BAD: Separate tests for each property test('should have id', () { expect(model.id, equals('1')); }); test('should have name', () { expect(model.name, equals('Test')); }); ```