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.
|
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);
|
|
// });
|
|
}
|