43 lines
1 KiB
Dart
43 lines
1 KiB
Dart
// import 'package:test/test.dart';
|
|
// import 'test_config.dart';
|
|
|
|
// import 'process_result_test.dart' as process_result_test;
|
|
// import 'pending_process_test.dart' as pending_process_test;
|
|
// import 'factory_test.dart' as factory_test;
|
|
// import 'pool_test.dart' as pool_test;
|
|
// import 'pipe_test.dart' as pipe_test;
|
|
|
|
// void main() {
|
|
// TestConfig.configure();
|
|
|
|
// group('Process Package Tests', () {
|
|
// group('Core Components', () {
|
|
// group('ProcessResult', () {
|
|
// process_result_test.main();
|
|
// });
|
|
|
|
// group('PendingProcess', () {
|
|
// pending_process_test.main();
|
|
// });
|
|
|
|
// group('Factory', () {
|
|
// factory_test.main();
|
|
// });
|
|
// });
|
|
|
|
// group('Advanced Features', () {
|
|
// group('Process Pool', () {
|
|
// pool_test.main();
|
|
// });
|
|
|
|
// group('Process Pipe', () {
|
|
// pipe_test.main();
|
|
// });
|
|
// });
|
|
// });
|
|
|
|
// // Run cleanup after all tests
|
|
// tearDownAll(() async {
|
|
// // Additional cleanup if needed
|
|
// });
|
|
// }
|