mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-14 11:39:17 +01:00
16 lines
425 B
Dart
16 lines
425 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Icons specify FluentIcons font', (WidgetTester tester) async {
|
|
await tester.pumpWidget(FluentApp(
|
|
home: NavigationView(
|
|
pane: NavigationPane(),
|
|
),
|
|
));
|
|
|
|
expect(FluentIcons.clear.fontFamily, 'FluentIcons');
|
|
expect(FluentIcons.search.fontFamily, 'FluentIcons');
|
|
});
|
|
}
|