You are developing a Python function add(a, b) that takes two integers and returns their sum. You want to use GitHub Copilot to generate boilerplate code for unit tests to ensure the function works correctly. What is the best strategy for generating comprehensive boilerplate unit tests using Copilot? def add ( a , b ): return a + b