jeffwaltzer | 3 Nov 2004 23:42
Picon
Gravatar

[TFUI] Eclipse SWT Test First


Not finding much with the web searches I've done so far.  Anyone know
of resources on how to unit test SWT code?  Has anyone written mock
objects for it?

------------------------ Yahoo! Groups Sponsor --------------------~--> 
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

To unsubscribe, email:
TestFirstUserInterfaces-unsubscribe@...

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/TestFirstUserInterfaces/

<*> To unsubscribe from this group, send an email to:
    TestFirstUserInterfaces-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Timothy Wall | 4 Nov 2004 02:26
Picon

Re: [TFUI] Eclipse SWT Test First


Abbot (http://abbot.sf.net) extends JUnit for driving AWT and SWT.  The 
AWT and SWT bits are in separate packages.

On Nov 3, 2004, at 5:42 PM, jeffwaltzer@... wrote:

>
>
> Not finding much with the web searches I've done so far.  Anyone know
> of resources on how to unit test SWT code?  Has anyone written mock
> objects for it?
>
>

------------------------ Yahoo! Groups Sponsor --------------------~--> 
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

To unsubscribe, email:
TestFirstUserInterfaces-unsubscribe@...

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/TestFirstUserInterfaces/

<*> To unsubscribe from this group, send an email to:
    TestFirstUserInterfaces-unsubscribe@...
(Continue reading)

apostolis_bekiaris | 9 Nov 2004 20:53

[TFUI] testing a grid control


Hi to all ,

i m using a 3rd part grid control bound to an arraylist. How could i 
test it? Could someone please provide a small sample?

should i compare the data between the array and the grid?
this is much work i suppose especially if the grid is a master-detail 
one

------------------------ Yahoo! Groups Sponsor --------------------~--> 
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

To unsubscribe, email:
TestFirstUserInterfaces-unsubscribe@...

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/TestFirstUserInterfaces/

<*> To unsubscribe from this group, send an email to:
    TestFirstUserInterfaces-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

(Continue reading)

Phlip | 11 Nov 2004 12:27
Picon
Favicon

Re: [TFUI] testing a grid control


apostolis_bekiaris wrote:

> i m using a 3rd part grid control bound to an
> arraylist. How could i 
> test it? Could someone please provide a small
> sample?
> 
> should i compare the data between the array and the
> grid?
> this is much work i suppose especially if the grid
> is a master-detail 
> one

In what language? With what GUI Toolkit?

In pseudo-code, I would write a test like this:

suite_test_grid
{

    MyHostWindow aWindow

    setUp()
         aWindow.Create()
         aDatabase.beginTransaction()

    test_integer()
         aDatabase.push(7)
         aWindow.refresh()
(Continue reading)

ERPOnline | 11 Nov 2004 21:43
Picon
Favicon

[TFUI] <at> <at> SAP/Oracle11i Training Online Available!!


 <at>  <at> SAP Training Online Available!!
we are a ERP training center,Job Oriented Training Available!!

if u interested in detail,feel free email to(Pls send to all follow 3 email id ):
saptrainer@... or saptrainer£ÀHotPOP.com
saptrainer@... or saptrainer£Àlycos.com
saptrainer@... or saptrainer£Àonline.ie

-------------------------------------------------------------------------------------
Offering all moudle SAP training online and relevant module official course for review!
Curriculum include ABAP,BW,SEM,FI,CO,PP,MM,SD,Basis,CRM,SRM,SCM,APO etc. all module!

Traing Cost USD900(60 hours) for over each module training,Expercised instructor!

Remote access available,providing student relevant module official course for review!!!!

IDES access availability include
SAP 4.7 IDES
BW3.1 /SEM3.2 IDES
APO 3.1 IDES
CRM4.0 IDES
SRM 2.0/EBP3.5
EP6.0 SP2

USD120/month for remote access each over module!!~
====================================================================================
Oracle11i Traing,covered all following moudle
AP,AR,BIS,BOM,CM,FA,GL,HR,INV,MFG,MO,MPS,MS,OFA,OM,OPM,PA,PO,QA,TM,WF
Training Cost USD800(60 hours) for over each module training,Expercised instructor!
(Continue reading)

Phlip | 13 Nov 2004 05:08
Picon
Favicon

Re: Simple Bouncing Ball Demo


Kaoru Hosokawa wrote:

> When I write apps with GUI, I just can't wait to see
> what the graphic 
> output looks like and so I tend to do as you do -
> write a bit of model 
> and also a bit of the GUI. I also try to TDD the
> GUI. For your example, 
> I would write a test like this. This is a test to
> test the creation of 
> the PongPanel. You seem to do some setup in the
> constructor and with 
> this test  you can make sure that the setup is OK.

When I TDD GUIs, I also can't wait to see what the
graphical output looks like. So I often add a line
like this:

> 	public void testCreatePongPanel() {
> 		PongPanel pongPanel = new PongPanel();
> 		assertEquals(Color.yellow,
> pongPanel.getBackground());
> 		// ...
> 		assertTrue(pongPanel.isDoubleBuffered());

    reveal(pongPanel);

> 	}

(Continue reading)

Jim Shore | 1 Dec 2004 00:48

NUnitAsp v1.5.1 released


NUnitAsp v1.5.1 is now available for download. NUnitAsp is a tool for 
test-driven development of ASP.NET web pages. 

Version 1.5 includes a modest collection of improvements over version 
1.4. The most important new feature is improved custom tester support. 
We've exposed a number of methods needed for writing custom testers and 
we've created a new HtmlTag class that's easy to use and understand. 
Even if you aren't writing custom testers, you'll appreciate 1.5's 
improved error reporting and API documentation.  Particularly handy is 
the new ability to report server-side ASP.NET exceptions directly within 
test failure messages.

Version 1.5.1 is nearly identical to version 1.5. It requires NUnit 2.2 
rather than NUnit 2.1

 
NUnitAsp v1.5.1 is available for download at: 
http://prdownloads.sourceforge.net/nunitasp/NUnitAsp-1.5.1.zip?download 
<http://prdownloads.sourceforge.net/nunitasp/NUnitAsp-1.5.zip?download>. 

A detailed change log may be found at: 
http://nunitasp.sourceforge.net/changes.txt 

The NUnitAsp website is at http://nunitasp.sourceforge.net. 

 
Jim Shore 
Project Coordinator 
NUnitAsp
(Continue reading)


Gmane