mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
14 lines
386 B
Cheetah
14 lines
386 B
Cheetah
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:{{projectName}}/{{projectName}}.dart';
|
|
|
|
void main() {
|
|
test('adds one to input values', () {
|
|
final calculator = Calculator();
|
|
expect(calculator.addOne(2), 3);
|
|
expect(calculator.addOne(-7), -6);
|
|
expect(calculator.addOne(0), 1);
|
|
expect(() => calculator.addOne(null), throwsNoSuchMethodError);
|
|
});
|
|
}
|