blob: 621d42d17261a22df9a0df0a36a7807c06f4fe61 [file] [log] [blame]
// 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.
import 'package:checks/checks.dart';
import 'package:test/scaffolding.dart';
void main() {
test('sample test', () {
final someValue = 5;
checkThat(someValue).equals(5);
final someList = [1, 2, 3, 4, 5];
checkThat(someList).deepEquals([1, 2, 3, 4, 5]);
final someString = 'abcdefghijklmnopqrstuvwxyz';
checkThat(someString)
..startsWith('a')
..endsWith('z')
..contains('lmno');
});
}