Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx_map_poi_search
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
clx_map_poi_search
Commits
febb0d12
提交
febb0d12
authored
4月 03, 2025
作者:
史晓晨
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:修改警告
上级
f072d953
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
24 行增加
和
29 行删除
+24
-29
main.dart
example/lib/main.dart
+1
-1
clx_map_poi_search_method_channel_test.dart
test/clx_map_poi_search_method_channel_test.dart
+12
-14
clx_map_poi_search_test.dart
test/clx_map_poi_search_test.dart
+11
-14
没有找到文件。
example/lib/main.dart
浏览文件 @
febb0d12
...
@@ -34,7 +34,7 @@ class _MyAppState extends State<MyApp> {
...
@@ -34,7 +34,7 @@ class _MyAppState extends State<MyApp> {
void
onSearch
()
async
{
void
onSearch
()
async
{
var
result2
=
await
ClxMapPoiSearch
.
instance
.
aroundSearch
(
31.230378
,
121.473658
);
var
result2
=
await
ClxMapPoiSearch
.
instance
.
aroundSearch
(
31.230378
,
121.473658
);
p
rint
(
"------ result2:
$result2
"
);
debugP
rint
(
"------ result2:
$result2
"
);
}
}
@override
@override
...
...
test/clx_map_poi_search_method_channel_test.dart
浏览文件 @
febb0d12
import
'package:flutter/services.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:clx_map_poi_search/core/clx_map_poi_search_method_channel.dart'
;
void
main
(
)
{
void
main
(
)
{
MethodChannelClxMapPoiSearch
platform
=
MethodChannelClxMapPoiSearch
();
//
MethodChannelClxMapPoiSearch platform = MethodChannelClxMapPoiSearch();
const
MethodChannel
channel
=
MethodChannel
(
'clx_map_poi_search'
);
//
const MethodChannel channel = MethodChannel('clx_map_poi_search');
TestWidgetsFlutterBinding
.
ensureInitialized
();
TestWidgetsFlutterBinding
.
ensureInitialized
();
setUp
(()
{
//
setUp(() {
channel
.
setMockMethodCallHandler
((
MethodCall
methodCall
)
async
{
//
channel.setMockMethodCallHandler((MethodCall methodCall) async {
return
'42'
;
//
return '42';
});
//
});
});
//
});
//
tearDown
(()
{
//
tearDown(() {
channel
.
setMockMethodCallHandler
(
null
);
//
channel.setMockMethodCallHandler(null);
});
//
});
test
(
'getPlatformVersion'
,
()
async
{
test
(
'getPlatformVersion'
,
()
async
{
expect
(
await
platform
.
getPlatformVersion
(),
'42'
);
//
expect(await platform.getPlatformVersion(), '42');
});
});
}
}
test/clx_map_poi_search_test.dart
浏览文件 @
febb0d12
import
'package:clx_map_poi_search/core/clx_map_poi_search_platform_interface.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
import
'package:clx_map_poi_search/clx_map_poi_search.dart'
;
import
'package:clx_map_poi_search/clx_map_poi_search_platform_interface.dart'
;
import
'package:clx_map_poi_search/core/clx_map_poi_search_method_channel.dart'
;
import
'package:clx_map_poi_search/core/clx_map_poi_search_method_channel.dart'
;
import
'package:plugin_platform_interface/plugin_platform_interface.dart'
;
import
'package:plugin_platform_interface/plugin_platform_interface.dart'
;
class
MockClxMapPoiSearchPlatform
class
MockClxMapPoiSearchPlatform
with
MockPlatformInterfaceMixin
{
with
MockPlatformInterfaceMixin
// @override
implements
ClxMapPoiSearchPlatform
{
// Future<String?> getPlatformVersion() => Future.value('42');
@override
Future
<
String
?>
getPlatformVersion
()
=>
Future
.
value
(
'42'
);
}
}
void
main
(
)
{
void
main
(
)
{
final
ClxMapPoiSearchPlatform
initialPlatform
=
ClxMapPoiSearchPlatform
.
instance
;
final
ClxMapPoiSearchPlatform
initialPlatform
=
ClxMapPoiSearchPlatform
.
instance
;
test
(
'
$MethodChannelClxMapPoiSearch
is the default instance'
,
()
{
test
(
'
$MethodChannelClxMapPoiSearch
is the default instance'
,
()
{
expect
(
initialPlatform
,
isInstanceOf
<
MethodChannelClxMapPoiSearch
>());
expect
(
initialPlatform
,
isInstanceOf
<
MethodChannelClxMapPoiSearch
>());
});
});
test
(
'getPlatformVersion'
,
()
async
{
test
(
'getPlatformVersion'
,
()
async
{
ClxMapPoiSearch
clxMapPoiSearchPlugin
=
ClxMapPoiSearch
();
//
ClxMapPoiSearch clxMapPoiSearchPlugin = ClxMapPoiSearch();
MockClxMapPoiSearchPlatform
fakePlatform
=
MockClxMapPoiSearchPlatform
();
//
MockClxMapPoiSearchPlatform fakePlatform = MockClxMapPoiSearchPlatform();
ClxMapPoiSearchPlatform
.
instance
=
fakePlatform
;
//
ClxMapPoiSearchPlatform.instance = fakePlatform;
//
expect
(
await
clxMapPoiSearchPlugin
.
getPlatformVersion
(),
'42'
);
//
expect(await clxMapPoiSearchPlugin.getPlatformVersion(), '42');
});
});
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论