Build: Simple Calculator Logic Test
This screen is for testing the logic of a simple calculator function that adds two numbers. It does not have a UI but focuses on unit testing the addition function.
Target UI
No UI - This is a unit test file for calculator logic.
Create a function add(int a, int b) that returns the sum of a and b.
Write a unit test to check if add(2, 3) returns 5.
Write a unit test to check if add(-1, 1) returns 0.
Use Flutter's test package for writing tests.