Skip to content

Commit

Permalink
[Removed _test] (#1)
Browse files Browse the repository at this point in the history
Changed repository expected message (#2)
  • Loading branch information
JordyHers committed May 14, 2022
1 parent 27681a3 commit 0ced78e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/handle_request_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'package:terminal/repository/repository.dart';
import 'package:terminal/views/calculator_page.dart';
import 'package:terminal/views/home_page.dart';

import 'mocks_test.dart';
import 'mocks.dart';


void main() {
Expand Down
2 changes: 1 addition & 1 deletion test/loading_widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:terminal/constants/strings.dart';
import 'package:terminal/main.dart';
import 'package:terminal/views/home_page.dart';

import 'mocks_test.dart';
import 'mocks.dart';

void main() {
testWidgets('Test Homepage Widgets', (WidgetTester tester) async {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions test/repository_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:terminal/constants/strings.dart';
import 'mocks_test.dart';
import 'mocks.dart';



Expand All @@ -27,7 +27,7 @@ void main(){
//Get Message Function
test('getMessage',()async {
final result = await rep.getMessage(0);
expect(result == 'getMessage',true);
expect(result == 'This is a test message',true);
},skip: false);


Expand Down

0 comments on commit 0ced78e

Please sign in to comment.