Ask Your Question
3

How can I execute multiple test-classes, such as "class1_test.dart", "class2_test.dart", etc., in a single apk on Firebase Test Lab for Flutter integration tests?

asked 2023-05-28 09:39:48 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-28 09:44:02 +0000

david gravatar image

To execute multiple test-classes in a single APK on Firebase Test Lab for Flutter integration tests, you can create a single test suite that includes all the test classes you want to execute.

To create a test suite, you can add the following code to your integration_test\flutter_test_config.dart file:

import 'package:flutter_test/flutter_test.dart';
import 'class1_test.dart' as class1;
import 'class2_test.dart' as class2;

void main() {
  group('My Test Suite', () {
    class1.main();
    class2.main();
  });
}

In this example, the group method creates a test suite called My Test Suite, and the main method for each test class is called within the group method.

When you run the flutter build apk command to build your APK, it will include all the test classes in the test suite. You can then upload this APK to Firebase Test Lab for execution.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-28 09:39:48 +0000

Seen: 11 times

Last updated: May 28 '23