blob: 36ecb3e47f317511f9e10b201743dfcbf1091aef [file] [log] [blame]
// Copyright 2013 The Flutter 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:camera_web/src/types/types.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
group('CameraMetadata', () {
testWidgets('supports value equality', (tester) async {
expect(
CameraMetadata(
deviceId: 'deviceId',
facingMode: 'environment',
),
equals(
CameraMetadata(
deviceId: 'deviceId',
facingMode: 'environment',
),
),
);
});
});
}