Skip to content

Commit

Permalink
English tests added
Browse files Browse the repository at this point in the history
  • Loading branch information
BrawlerXull committed Nov 5, 2024
1 parent 3e0a0b7 commit 0363781
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/language/sentence_manager_test.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import 'package:test/test.dart';
import 'package:taskwarrior/app/utils/language/sentence_manager.dart';
import 'package:taskwarrior/app/utils/language/supported_language.dart';

void main() {
group('SentenceManager Tests', () {
test('Should return "Hello, World!" for English', () {
final sentenceManager = SentenceManager(currentLanguage: SupportedLanguage.english);
expect(sentenceManager.sentences.helloWorld, 'Hello, World!');
});


});
}

0 comments on commit 0363781

Please sign in to comment.