Create window_caption_test.dart

This commit is contained in:
Ashita Prasad
2024-01-09 08:25:22 +05:30
parent 082002e478
commit 8b4de31948

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:apidash/widgets/window_caption.dart';
void main() {
testWidgets('Testing for Window caption', (tester) async {
await tester.pumpWidget(
const MaterialApp(
title: 'Window caption',
home: Scaffold(
body: WindowCaption(),
),
),
);
final wd = find.byType(GestureDetector);
expect(wd, findsAny);
});
}