/* LICENSE BEGIN This file is part of the SixtyFPS Project -- https://sixtyfps.io Copyright (c) 2021 Olivier Goffart Copyright (c) 2021 Simon Hausmann SPDX-License-Identifier: GPL-3.0-only This file is also available under commercial licensing terms. Please contact info@sixtyfps.io for more information. LICENSE END */ TestCase := Rectangle { width: 100phx; height: 100phx; property value; callback clicked; // this callback shouldn't conflict with the other callback TouchArea { clicked => { value += 1; } } } /* ```cpp auto handle = TestCase::create(); const TestCase &instance = *handle; sixtyfps::testing::send_mouse_click(&instance, 5., 5.); assert_eq(instance.get_value(), 1); ``` ```rust let instance = TestCase::new(); sixtyfps::testing::send_mouse_click(&instance, 5., 5.); assert_eq!(instance.get_value(), 1); ``` ```js var instance = new sixtyfps.TestCase(); instance.send_mouse_click(5., 5.); assert.equal(instance.value, 1); ``` */