Search the web
Sign In
New User? Sign Up
TestFirstUserInterfaces
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 271 - 300 of 1051   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
271
One NFish wrote on news:comp.object : I'm interested in unit testing and test driven development, but I'm having trouble applying it to GUIs. It's easy to...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:35 pm
272
NFish <nobody@...> wrote in message news:<8ljsb.28332$df7.11611@...>... ... Frankly I think that advice was correct. Yes the UI...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
273
... Here's a unit test for WTL: #include <assert.h> void test_Dialog() { ProjectDlg aDlg("<user><name>Ignatz</name></user>"); aDlg.Create(HWND_TOP); CString...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
274
... news:<8ljsb.28332$df7.11611@...>... ... I agree with this, but it doesn't really solve the problem, which is that GUIs are hard to...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
275
Responding to NFish... ... I basically agree with Perkins but with a rather different spin. The GUI is /inherently/ thin if it is properly encapsulated. Any...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
276
NFish <nobody@...> might (or might not) have written this on ... Let's take these one at a time. 1. You can test drag and drop, and any other GUI...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
277
... ShowWindow() ... the ... Ok, and to make sure that your application generates drag events properly, you'd probably have to generate fake mouse events and...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:48 pm
278
... The industry has little experience test-first, or test-first in a GUI. All the GUI Toolkits bundle with toys that make untestable modifications very easy....
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
2:49 pm
279
There is so much talk of 'SmallTalk' (pun intended), that i wonder why it never made it to the commercial programming domain. I am basically a COBOL programmer...
Chak
r_chakra@...
Send Email
Nov 13, 2003
4:53 pm
280
... From: "Chak" <r_chakra.at.yahoo.com@...> To: "TestFirstUserInterfaces@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Nov 13, 2003
5:39 pm
281
... Not at all. I was just listening to Johnny Cash singing "I Toe the Line" in German, and it was reminding me I ought to cut a hole in my desktop and put a...
Phlip
phlipcpp
Offline Send Email
Nov 13, 2003
6:09 pm
282
... It is /more/ than defensible. On the C3 project, I was exposed to some COBOL after a very very long time away from it. COBOL includes some very nifty...
Ron Jeffries
RonaldEJeffries
Offline Send Email
Nov 14, 2003
1:38 am
283
... From: "Ron Jeffries" <ronjeffries.at.XProgramming.com@...> To: "TestFirstUserInterfaces@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Nov 14, 2003
11:58 am
284
... A UI does two kinds of things: represent domain objects to the user and provide neat UI features (drag and drop). Test the former in a way that is largely...
J. B. Rainsberger
nails762
Offline Send Email
Nov 14, 2003
4:24 pm
285
It ain't COBOL, but at least it demonstrates the "maybeMainloop pattern" in <300 lines, in Windows Template Library. A similar effort with raw Win32 or with...
Phlip
phlipcpp
Offline Send Email
Nov 15, 2003
5:17 am
286
TFUI: The production code simply raises a dialog box with a customer's address in it. Further tests could easily demonstrate changing that data and saving it ...
Phlip
phlipcpp
Offline Send Email
Nov 15, 2003
5:18 am
287
Hi, Phlip, ... I don't know about "business layers". But the duplication I see is SetDlgItemText(IDC_EDIT_<SOMETHING>, aCA.get("<something>")); And of course...
manaster@...
cmanaster
Offline Send Email
Nov 15, 2003
12:05 pm
288
... annoying ... one ... which ... I don't know Struts. But where tests don't cover, bugs will go. The "separate the business logic" strategy has many other...
Phlip
phlipcpp
Offline Send Email
Nov 22, 2003
4:42 am
289
TFHU: Please proofread the following for accuracy & relevance. Bjarne Stroustrup invented C++ to provide the popular C language with the keywords virtual,...
Phlip
phlipcpp
Offline Send Email
Nov 29, 2003
2:51 am
290
... joke. Maybe I should stretch this out just a little - the joke is that's what you get for using Google to research via uncensored posts to technical ...
Phlip
phlipcpp
Offline Send Email
Nov 29, 2003
12:18 pm
291
... different ... Try this: def test_saveTranscludedText() hello_world = "hello world" writeFile("files/sample.txt", hello_world) transcluder = "!text!ruby...
Phlip
phlipcpp
Offline Send Email
Nov 30, 2003
3:29 am
292
... ... as well as Web Testing with Ruby for more info on using Ruby to drive IE (and possibly Mozilla). http://clabs.org/wtr -- Chris http://clabs.org/blogki ...
Chris Morris
workmo
Offline Send Email
Nov 30, 2003
3:44 pm
293
... Mozilla! Cool! About clabs, I was honestly about to mention it next. (The original post was, of course, to an unbeliever, so I needed to not snow them too...
Phlip
phlipcpp
Offline Send Email
Nov 30, 2003
5:19 pm
294
Hi, I'm struggling with GUI's that are filled with business logic. I'm thinking of proceeding as follows in future. The application consists primarily of fat...
Mike Stallings
stallings_mike1
Offline Send Email
Nov 30, 2003
5:55 pm
295
From: "Mike Stallings" <stallings_mike.at.hotmail.com@...> Sent: Sunday, November 30, 2003 12:55 PM Subject: [TFUI] A Method for...
yahoogroups@...
jhrothjr
Offline Send Email
Nov 30, 2003
6:29 pm
296
... into ... I think I fixed it. I went this direction: struct field { CString m_name; UINT m_id; } fields[] = { { "first_name" , IDC_EDIT_FIRST_NAME }, {...
Phlip
phlipcpp
Offline Send Email
Nov 30, 2003
8:51 pm
297
... This is only a requirement if there's no named controls in the form. cliec originally started to scratch an itch I had to screen-scrape my bank balances,...
Chris Morris
workmo
Offline Send Email
Dec 1, 2003
3:27 am
298
... Well, maybe :-) See http://www.clabs.org/wtr/index.cgi?page=/MozAxc -- Chris http://clabs.org/blogki...
Chris Morris
workmo
Offline Send Email
Dec 1, 2003
3:37 am
299
... In reference to the WTR project I mentioned in the other thread -- with .NET you can publish your Windows Forms as COM objects and then do GUI testing on...
Chris Morris
workmo
Offline Send Email
Dec 1, 2003
3:48 am
300
Tee Eff You Eye: 'A "script" is a set of glyphs that write a language. A "char set" is a table of integers, one for each glyph in the script. An "encoding" is...
Phlip
phlipcpp
Offline Send Email
Dec 1, 2003
6:34 am
Messages 271 - 300 of 1051   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help