mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
typo
This commit is contained in:
parent
822ddf5ac6
commit
5aa6dccd3c
1 changed files with 6 additions and 8 deletions
|
@ -2,13 +2,11 @@ import 'dart:math';
|
||||||
|
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
|
import 'package:light_sensor/light_sensor.dart';
|
||||||
const _systemFeatureMethodChannel = MethodChannel('system_feature');
|
|
||||||
const _lightSensorMethodChannel = MethodChannel("light.eventChannel");
|
|
||||||
|
|
||||||
void setLightSensorAvilability({required bool hasSensor}) {
|
void setLightSensorAvilability({required bool hasSensor}) {
|
||||||
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
||||||
_systemFeatureMethodChannel,
|
LightSensor.methodChannel,
|
||||||
(methodCall) async {
|
(methodCall) async {
|
||||||
switch (methodCall.method) {
|
switch (methodCall.method) {
|
||||||
case "sensor":
|
case "sensor":
|
||||||
|
@ -22,7 +20,7 @@ void setLightSensorAvilability({required bool hasSensor}) {
|
||||||
|
|
||||||
void resetLightSensorAvilability() {
|
void resetLightSensorAvilability() {
|
||||||
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
||||||
_systemFeatureMethodChannel,
|
LightSensor.methodChannel,
|
||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -31,7 +29,7 @@ Future<void> sendMockIncidentEv(double ev) => sendMockLux((2.5 * pow(2, ev)).toI
|
||||||
|
|
||||||
Future<void> sendMockLux([int lux = 100]) async {
|
Future<void> sendMockLux([int lux = 100]) async {
|
||||||
await TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.handlePlatformMessage(
|
await TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.handlePlatformMessage(
|
||||||
_lightSensorMethodChannel.name,
|
LightSensor.eventChannel.name,
|
||||||
const StandardMethodCodec().encodeSuccessEnvelope(lux),
|
const StandardMethodCodec().encodeSuccessEnvelope(lux),
|
||||||
(ByteData? data) {},
|
(ByteData? data) {},
|
||||||
);
|
);
|
||||||
|
@ -39,7 +37,7 @@ Future<void> sendMockLux([int lux = 100]) async {
|
||||||
|
|
||||||
void setupLightSensorStreamHandler() {
|
void setupLightSensorStreamHandler() {
|
||||||
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
||||||
_lightSensorMethodChannel,
|
MethodChannel(LightSensor.eventChannel.name),
|
||||||
(methodCall) async {
|
(methodCall) async {
|
||||||
switch (methodCall.method) {
|
switch (methodCall.method) {
|
||||||
case "listen":
|
case "listen":
|
||||||
|
@ -55,7 +53,7 @@ void setupLightSensorStreamHandler() {
|
||||||
|
|
||||||
void resetLightSensorStreamHandler() {
|
void resetLightSensorStreamHandler() {
|
||||||
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.setMockMethodCallHandler(
|
||||||
_lightSensorMethodChannel,
|
MethodChannel(LightSensor.eventChannel.name),
|
||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue