Files
wails-epic/internal/service/parser_service_test.go
hu xiaotong 1b90af57ba feat(database): 实现数据库功能并优化数据导出
- 新增数据库相关 API 和服务
- 实现数据导出功能,支持导出到 JSON 文件
- 优化数据导入流程,增加数据校验
- 新增数据库页面,展示解析数据和统计信息
- 更新捕获页面,支持导入数据到数据库
2025-07-04 12:48:40 +08:00

14 lines
362 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package service
import (
"testing"
)
func TestReadRawJsonFile(t *testing.T) {
// 此测试已废弃因为ReadRawJsonFile方法已被移除
// 现在数据存储在SQLite数据库中不再依赖output_raw.json文件
t.Skip("ReadRawJsonFile测试已废弃数据现在存储在SQLite数据库中")
}
// 辅助函数已移除,因为测试已废弃