From 9f167a72012503a0679c7004a037508304ee8bfc Mon Sep 17 00:00:00 2001 From: Alex James Date: Tue, 8 Aug 2023 14:05:42 +0100 Subject: [PATCH] Remove example test from java_http (#1001) The example test was generated by the Dart 'create' command. --- pkgs/java_http/test/java_http_test.dart | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 pkgs/java_http/test/java_http_test.dart diff --git a/pkgs/java_http/test/java_http_test.dart b/pkgs/java_http/test/java_http_test.dart deleted file mode 100644 index e859141d2f..0000000000 --- a/pkgs/java_http/test/java_http_test.dart +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2023, the Dart project authors. 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. - -// This code was generated by the Dart create command with the package template. - -import 'package:java_http/java_http.dart'; -import 'package:test/test.dart'; - -void main() { - group('A group of tests', () { - final awesome = Awesome(); - - setUp(() { - // Additional setup goes here. - }); - - test('First Test', () { - expect(awesome.isAwesome, isTrue); - }); - }); -}