1 // =============================================================================
2 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 // Copyright (C) 2017 - Scilab Enterprises - Adeline CARNIS
5 // This file is distributed under the same license as the Scilab package.
6 // =============================================================================
8 // <-- TEST WITH GRAPHIC -->
10 // <-- INTERACTIVE TEST -->
12 // <-- Non-regression test for bug 13962 -->
14 // <-- Bugzilla URL -->
15 // http://bugzilla.scilab.org/13962
17 // <-- Short Description -->
18 // If the groupname and value properties were set to radiobutton creation,
19 // then it was only selected at the first execution.
23 f.figure_name = "test";
24 f.axes_size = [200 200];
28 r1 = uicontrol(f, "style", "radiobutton", ...
29 "string", "radiobutton1", ...
30 "groupname", "testgroup", ...
33 "position", [0 90 200 20]);
37 // check that the radiobutton is well selected.
41 // check that the radiobutton is well selected.