import 'package:test/test.dart';

void main() {
  test("should pass", () {
    expect(1 + 1, equals(2));
  });
}