public static async Task Test1()
{
await Task.Delay(1000); // Non-compliant, return the Task directly.
}
public static async Task Test2()
{
await MyAsyncMethod(); // Non-compliant, exceptions within MyAsyncMethod are handled by the method itself.
}