blob: 5fb753fb361652dc25b074fa02c9e830c98151e4 [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_test/flutter_test.dart';
void main() {
test('constructor should initialize properties', () {
final code = 'TEST_ERROR';
final description = 'This is a test error';
final exception = CameraException(code, description);
expect(exception.code, code);
expect(exception.description, description);
});
test('toString: Should return a description of the exception', () {
final code = 'TEST_ERROR';
final description = 'This is a test error';
final expected = 'CameraException($code, $description)';
final exception = CameraException(code, description);
final actual = exception.toString();
expect(actual, expected);
});
}