Search the web
Sign In
New User? Sign Up
agile-testing · Agile Software Testing
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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
Automated tests vs. refactored code   Message List  
Reply | Forward Message #3217 of 18142 |
Re: [agile-testing] Powerful vs. persuasive


On Jan 25, 2004, at 10:31 AM, Ron Jeffries wrote:

> I imagine that
> the tests are running all the time in the background, and that when
> they
> fail, I get a red light somewhere.

We're on the same wavelength.

Some languages have asserts, but not sufficient case specification to
evaluate cases in the editor. Imagine we add "e.g." as a keyword so
that example values can be specified in the source:

int productOfSum (int a eg 5, b eg 7, c eg 9) {
return a+b*c eg 108;
}


--
Ward Cunningham
503-245-5633 v mailto:ward@...
503-246-5587 f http://c2.com




Sun Jan 25, 2004 10:26 pm

ward@...
Send Email Send Email

Forward
Message #3217 of 18142 |
Expand Messages Author Sort by Date

... Awesome. -- Ward Cunningham 503-245-5633 v mailto:ward@... 503-246-5587 f http://c2.com...
Ward Cunningham
ward@...
Send Email
Jan 26, 2004
12:14 am

... We're on the same wavelength. Some languages have asserts, but not sufficient case specification to evaluate cases in the editor. Imagine we add "e.g." as...
Ward Cunningham
ward@...
Send Email
Jan 26, 2004
12:13 am

... Interesting indeed. I see a red squiggle under this code. It would be fun to work on a toy language with this feature. It would be even more fun to work in...
Ron Jeffries
ronaldejeffries
Offline Send Email
Jan 26, 2004
12:49 am

... This seems to be similar to the sometimes Smalltalk convention of putting an executable sample in the method comment, except the tools know what to do with...
patrickdlogan
Offline Send Email
Jan 26, 2004
7:36 pm

... Hmm. I feel an experiment coming on. Squeak's parser is easy to hack. -- Ward Cunningham 503-245-5633 v mailto:ward@... 503-246-5587 f http://c2.com...
Ward Cunningham
ward@...
Send Email
Jan 27, 2004
3:50 am

... Here it is in Scheme... (defmacro define-eg (name-result parameter-input . body) (let ((name (car name-result)) (eg-result (cadr name-result)) (parameters...
patrickdlogan
Offline Send Email
Jan 28, 2004
3:53 am

... So much for formatting. Here it is on a web page... http://shorterlink.com/?CJ3ZJD -Patrick...
patrickdlogan
Offline Send Email
Jan 28, 2004
2:35 pm

... Another angle on this idea being presented at PyCon 2004... http://pycon.org/dc2004/talks/index_html#literate "Doctest is a system for writing tests within...
patrickdlogan
Offline Send Email
Feb 27, 2004
6:56 pm

I wanted to reply to an old post that i found interesting. Brian, in your post you distinguish between testers who are focussed on finding bugs and programmers...
Bret Pettichord
bpettichord
Online Now Send Email
Jan 29, 2004
6:41 pm

... It seems to be common wisdom among "test infected" programmers that tests are a design tool more than a bug-finding tool. Tests help you think through, and...
Brian Marick
briandawnpau...
Offline Send Email
Jan 30, 2004
5:00 pm

I agree as well. Even in the early days of implementation we started building a re-usable framework for testing, even at a GUI level which many people claim...
STEURS Stefan
stefan.steurs@...
Send Email
Jan 16, 2004
1:38 pm

Ron, Are you proposing that the automated tests be changed on a weekly or daily basis? Deborah Haight ... From: Ron Jeffries...
Deborah Haight
dhaight71
Offline Send Email
Jan 16, 2004
1:44 pm

... Yes, if necessary. The sooner we find a problem, the faster the project will go. Therefore we should write the test at the same time we get the...
Ron Jeffries
ronaldejeffries
Offline Send Email
Jan 16, 2004
2:27 pm

From: "Anko Tijman" <atijman@...> ... You can make your tests more robust by generating the data that the test will use as part of the test. For...
Kevin Lawrence
kevinwilliam...
Online Now Send Email
Jan 16, 2004
1:45 pm

I do think that there must be "critical mass". But I've found usually that my management thinks much more critical mass is needed than I do. If management...
STEURS Stefan
stefan.steurs@...
Send Email
Jan 16, 2004
2:50 pm

... I can write a defect in my first ten lines of code -- that's why I do TDD, and why I test so much. But if I can do that, and if the testing people know...
Ron Jeffries
ronaldejeffries
Offline Send Email
Jan 18, 2004
1:31 am

... daily basis? ... /snip ... This is, I believe, the single most concrete, demonstrable, supportable, business argument that can be made for IID. Since...
Bill Walton
bill_walton7...
Offline Send Email
Jan 18, 2004
1:31 am

... Sounds great, where could we get such a simulation? Ron Jeffries www.XProgramming.com In times of stress, I like to turn to the wisdom of my Portuguese...
Ron Jeffries
ronaldejeffries
Offline Send Email
Jan 18, 2004
8:06 pm

... of the ... You're right about the network effect, although I think complexity might be more a function of the number of connections between components, ...
Michael Silverstein
mksilverstein
Offline Send Email
Jan 18, 2004
10:38 pm

... There has got to be more going on here than this. For example, my laptop processor can directly address over a billion memories, but I still think of this...
Ward Cunningham
ward@...
Send Email
Jan 19, 2004
12:46 am

From: Ward Cunningham [mailto:ward@...] ... That depends on your definition of a component, and what constitutes a connection. In your example there is the...
Michael Silverstein
mksilverstein
Offline Send Email
Jan 19, 2004
4:54 pm

... I suggest that a useful measure of complexity might be the number of minutes of study required to correctly effect an unanticipated change. In my...
Ward Cunningham
ward@...
Send Email
Jan 20, 2004
3:11 pm

From: Ward Cunningham [mailto:ward@...] ... of ... That's an excellent point. While a system may be characterized by some absolute complexity quantifier (by...
Michael Silverstein
mksilverstein
Offline Send Email
Jan 20, 2004
4:37 pm

... That raises the question of levels of abstraction. If you are specifying your tests at a higher level than your code and using adapters, then the adapters...
Hubert Matthews
hubert@...
Send Email
Jan 18, 2004
8:06 pm

... ... which leads, perhaps, to a way tests can help programmers figure out where things belong. Here's a sequence of events I recommended to a client last...
Brian Marick
briandawnpau...
Offline Send Email
Jan 19, 2004
12:32 am

Hi Brian, I like your approach and agree that the Fit tables are a (more) abstract user interface. The GUI and Fit tables each drive the design of the lower...
Rick Mugridge
rickmugridge
Offline Send Email
Jan 19, 2004
4:54 pm

... Sorry, I don't understand the question. ... Unfortunately, I haven't worked with experienced customers, so I can't answer. My experience with delaying UI...
Brian Marick
briandawnpau...
Offline Send Email
Jan 19, 2004
8:55 pm

Hi Brian, My questions arise because I'm working on clarifying the issue of where and when to apply Fit tables. At the moment, my focus is on the areas under...
Rick Mugridge
rickmugridge
Offline Send Email
Jan 19, 2004
10:33 pm

... That seems reasonable to me. The FIT tests might talk about behaviors not accessible through the GUI, so their API needs should be a superset. (I can...
Brian Marick
briandawnpau...
Offline Send Email
Jan 22, 2004
4:31 pm

From: "Rick Mugridge" <r.mugridge@...> ... My experience is that web interfaces, GUIs and external APIs each put very different demands on an object...
Kevin Lawrence
kevinwilliam...
Online Now Send Email
Jan 19, 2004
10:58 pm
 First  |  |  Last 
Advanced

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