blob: c76688f768d748766b8f1c8eefb384f46cfa3564 [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';
void main() {
group('CameraMetadata', () {
test('supports value equality', () {
expect(
CameraMetadata(
deviceId: 'deviceId',
facingMode: 'environment',
),
equals(
CameraMetadata(
deviceId: 'deviceId',
facingMode: 'environment',
),
),
);
});
});
}