Skip to content

Commit 0363781

Browse files
committed
English tests added
1 parent 3e0a0b7 commit 0363781

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import 'package:test/test.dart';
2+
import 'package:taskwarrior/app/utils/language/sentence_manager.dart';
3+
import 'package:taskwarrior/app/utils/language/supported_language.dart';
4+
5+
void main() {
6+
group('SentenceManager Tests', () {
7+
test('Should return "Hello, World!" for English', () {
8+
final sentenceManager = SentenceManager(currentLanguage: SupportedLanguage.english);
9+
expect(sentenceManager.sentences.helloWorld, 'Hello, World!');
10+
});
11+
12+
13+
});
14+
}

0 commit comments

Comments
 (0)