You are working on a small web application with a User model that contains the following method: class User : def __init__ ( self , username , age ): self . username = username self . age = age def is_adult ( self ): return self . age >= 18 You want to use GitHub Copilot to generate integration tests for is_adult() , ensuring it works with other app components, like a view restricting content for adults. What's the best way to generate these tests using GitHub Copilot?