From b40d91487500c1254155e8d89c55b73405a0e140 Mon Sep 17 00:00:00 2001 From: Halil Durmus Date: Wed, 20 Dec 2023 01:03:15 +0300 Subject: [PATCH] Delete empty test --- test/com/iuiautomationcondition_test.dart | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 test/com/iuiautomationcondition_test.dart diff --git a/test/com/iuiautomationcondition_test.dart b/test/com/iuiautomationcondition_test.dart deleted file mode 100644 index d1524eb70..000000000 --- a/test/com/iuiautomationcondition_test.dart +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2020, Dart | Windows. Please see the AUTHORS file -// for details. All rights reserved. Use of this source code is governed by a -// BSD-style license that can be found in the LICENSE file. - -// Tests that Win32 API prototypes can be successfully loaded (i.e. that -// lookupFunction works for all the APIs generated) - -// THIS FILE IS GENERATED AUTOMATICALLY AND SHOULD NOT BE EDITED DIRECTLY. - -// ignore_for_file: unused_local_variable - -@TestOn('windows') - -import 'dart:ffi'; - -import 'package:ffi/ffi.dart'; -import 'package:test/test.dart'; - -import 'package:win32/win32.dart'; - -void main() { - final ptr = calloc(); - - final uiautomationcondition = IUIAutomationCondition(ptr); - - free(ptr); -}