Kien Hoang
0
Q:

dart test expect assert fail

import 'package:test/test.dart';

void main() {
  test('assert throws assert', () {
    expect(() {
      assert(false);
    }, throwsA(isA<AssertionError>());
  });
}
0

New to Communities?

Join the community