blob: f7cb657725a9d642d3cf9041f9e567686ab475b0 [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_platform_interface/camera_platform_interface.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
TestWidgetsFlutterBinding.ensureInitialized();
group('DeviceOrientationChangedEvent tests', () {
test('Constructor should initialize all properties', () {
final event = DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
expect(event.orientation, DeviceOrientation.portraitUp);
});
test('fromJson should initialize all properties', () {
final event = DeviceOrientationChangedEvent.fromJson(<String, dynamic>{
'orientation': 'portraitUp',
});
expect(event.orientation, DeviceOrientation.portraitUp);
});
test('toJson should return a map with all fields', () {
final event = DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
final jsonMap = event.toJson();
expect(jsonMap.length, 1);
expect(jsonMap['orientation'], 'portraitUp');
});
test('equals should return true if objects are the same', () {
final firstEvent =
DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
final secondEvent =
DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
expect(firstEvent == secondEvent, true);
});
test('equals should return false if orientation is different', () {
final firstEvent =
DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
final secondEvent =
DeviceOrientationChangedEvent(DeviceOrientation.landscapeLeft);
expect(firstEvent == secondEvent, false);
});
test('hashCode should match hashCode of all properties', () {
final event = DeviceOrientationChangedEvent(DeviceOrientation.portraitUp);
final expectedHashCode = event.orientation.hashCode;
expect(event.hashCode, expectedHashCode);
});
});
}