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.
13 lines
386 B
13 lines
386 B
import 'package:flutter_test/flutter_test.dart'; |
|
|
|
import 'package:argon2_ffi_base/argon2_ffi_base.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); |
|
}); |
|
}
|
|
|