Displaying 5 results from an estimated 5 matches for "test_item_data".
Did you mean:
get_item_data
2006 Dec 01
0
[767] trunk/wxruby2: Added CheckListBox to item_data test, note to explain why fixes are not needed
...item_data test, note to explain why fixes are not needed</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwxruby2swigclassesCheckListBoxi">trunk/wxruby2/swig/classes/CheckListBox.i</a></li>
<li><a href="#trunkwxruby2teststest_item_datarb">trunk/wxruby2/tests/test_item_data.rb</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwxruby2swigclassesCheckListBoxi"></a>
<div class="modfile"><h4>Modified: trunk/wxruby2/s...
2006 Nov 30
0
[765] trunk/wxruby2: Fixed item_data functions for ListCtrl, plus test
...>
<pre>Fixed item_data functions for ListCtrl, plus test</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwxruby2swigclassesListCtrli">trunk/wxruby2/swig/classes/ListCtrl.i</a></li>
<li><a href="#trunkwxruby2teststest_item_datarb">trunk/wxruby2/tests/test_item_data.rb</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwxruby2swigclassesListCtrli"></a>
<div class="modfile"><h4>Modified: trunk/wxruby2/swig/...
2006 Nov 21
0
[744] trunk/wxruby2: get_data support & mem mgmt to all ControlWithItems types, using more
...xruby2/swig/classes/ListBox.i</a></li>
<li><a href="#trunkwxruby2swigsharedcontrol_with_itemsi">trunk/wxruby2/swig/shared/control_with_items.i</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwxruby2teststest_item_datarb">trunk/wxruby2/tests/test_item_data.rb</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwxruby2swigclassesChoicei"></a>
<div class="modfile"><h4>Modified: trunk/wxruby2/swig/cl...
2006 Dec 01
0
[766] trunk/wxruby2: Added item_data aliases for client_data functions, update doc & tests;
...also extend and tidy treectrl item_data tests</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwxruby2doctextilecontrolwithitemstxtl">trunk/wxruby2/doc/textile/controlwithitems.txtl</a></li>
<li><a href="#trunkwxruby2teststest_item_datarb">trunk/wxruby2/tests/test_item_data.rb</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwxruby2libwxclasseschoicerb">trunk/wxruby2/lib/wx/classes/choice.rb</a></li>
<li><a href="#trunkwxruby2li...
2006 Dec 18
13
unit testing wxruby GUIs
...xruby.
I like automated UI testing too, but don''t know of a single solution for
now.
To exercise the API of a particular component you have written, you can
create fast ''headless'' tests by creating a host app and frame, but not
showing the frame. Take a look at tests/test_item_data.rb in the
distribution for an example.
But I guess you are also interested in testing a GUI as a whole. There
are two routes you might consider:
1) Use the fact that wxruby creates native widgets and drive the GUI
using something like AutoIt (http://www.autoitscript.com/autoit3/),
using Ruby...