blob: daad9b65f30d806a976c8fe63a6c3b9fb027cf47 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:test/test.dart';
import 'package:fuchsia_modular/lifecycle.dart';
import 'package:fuchsia_modular/module.dart';
import 'package:fuchsia_services/services.dart';
void main() {
setUpAll(() {
final context = ComponentContext.createAndServe();
Lifecycle.enableLifecycleEvents(context.outgoing);
});
group('module tests', () {
test('factory returns same instance', () {
expect(Module(), Module());
});
});
}