Skip to content

Commit f32b4cd

Browse files
committed
test: add unit test cases
1 parent 606ffd4 commit f32b4cd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

test/brands/flutter_test.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,8 @@ void main() {
2424
test('light grey', () {
2525
expect(const Flutter.lightGrey().color, const Color(0xFFD5D7DA));
2626
});
27+
test('white', () {
28+
expect(const Flutter.white().color, const Color(0xFFFFFFFF));
29+
});
2730
});
2831
}

test/brands/twitter_test.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@ void main() {
2727
const Color(0xFFF5F8FA),
2828
);
2929
});
30+
test('white', () {
31+
expect(const Twitter.white().color, const Color(0xFFFFFFFF));
32+
});
3033
});
3134
}

0 commit comments

Comments
 (0)