dev_test 1.0.0+4 copy "dev_test: ^1.0.0+4" to clipboard
dev_test: ^1.0.0+4 copied to clipboard

Test utilities for dart and flutter packages.

example/main.dart

// Copyright (c) 2017, alex. 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:dev_test/test.dart';

void main() {
  group('group', () {
    test('test', () {
      expect(true, isTrue);

      // testDescriptions helper. Can be used to generate a path or a test
      // specific context.
      expect(testDescriptions, ['group', 'test']);
    });
  });
}