Restructure some things

This commit is contained in:
zontreck 2025-01-31 14:23:15 -07:00
parent 99f15fda36
commit d4bbca6405
9 changed files with 174 additions and 81 deletions

11
test/testAlert.dart Normal file
View file

@ -0,0 +1,11 @@
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:libacflutter/tests/tester.dart';
void main() {
test("Test a null alert callback", () async {
runApp(WidgetTest(route: "/testalert0"));
});
}