blob: c525b9e12590bdbe96c47984246b37f4e3aa9af3 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:test/test.dart';
void main() {
test('included', () {
expect(2 + 2, 4);
});
test('excluded', () {
throw 'this test should have been filtered out';
});
}