Skip to content

Commit

Permalink
* Fix multiplatform bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnoUrmish committed Apr 20, 2021
1 parent 47a534f commit 760c9b6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/sizer_test.dart
@@ -0,0 +1,12 @@
import 'package:flutter_test/flutter_test.dart';

import 'package:sizer/sizer.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);
});
}

0 comments on commit 760c9b6

Please sign in to comment.