You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
4 years ago
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
||
|
import 'package:ansu_ui/ansu_ui.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);
|
||
|
});
|
||
|
}
|