You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ben...@id...> - 2004-05-22 12:25:00
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Gunnar G. <gu...@cs...> - 2003-07-18 19:27:58
|
Hi All, At 11:59 PM -0400 7/17/03, Dave Makalsky wrote: >Hi: > >Please encourage 3311 students to join the etester-users list by >going to http://lists.sourceforge.net/lists/listinfo/etester-users > >We will save the etester-devel list for development issues. I do not suggest such encouragement. I do not relish receiving messages from an ever broadening list. I suggest we could encourage them to send to the developers of etester who can maintain a list of problems without everyone on the list receiving every complaint. In fact, I am unsubscribing from the list for two reasons. (1) I am going on holiday and do not want to come back to a flood of messages about etester. (2) I am not that interested in etester that I want to devote significant time to it. My interest in etester lies only so far as it is it may be of use in the software design course. I am not convinced that the overhead of using it is worth the effort, either for myself or for students. I have used etester in the dictionary exercise (W03 course) and did a minimal output test program. The major difference I see is a colour html output screen but I see no other advantages/benefits. I do see disadvantages. (0) with minimal output testing I can do incremental development and frequent testing, even test driven design. The java libraries I point to from my previous www pages for the course were constructed incrementally with the test programs growing as the libraries grew. (1) etester does not give me additional information that I do not have from a minimal output test program. In fact, with a minimal output test program, I am in control of what and how much is reported. Instead of being restricted to what other people think is good or useful. For example, the discussion as to where comments should go, there is no right or wrong. There are only opinions and styles of programming. Another example is the poor commenting facility in Eiffel that makes it difficult to write longer comments forcing people to the style that Myer prefers but has many drawbacks as one-liners are not sufficient documentation for many features. If block comments (like C /* ... */) were implemented, then people who prefer short comments can have them and people who want long comments can have them. (2) When I compare my programming effort with constructing a set of minimal output tests there is little difference with etester. (3) minimal output testing can be used on any platform for any programming language without the use of special tools created by other people. People can carry their style over to any project. Now there is one style for etester, one for java, potentially one for each programming language/environment. (4) There is a significant cost in using such tools ranging from installation to understanding and using the tool. That overhead has to be compensated with information that could not be easily obtained otherwise and/or significantly reduced programming effort. I have not found such compensation with etester. (5) To me it looks like more research into the construction and use of etester is needed before it will of significant use for students. Cheers ... Gunnar |
|
From: Ali M. <al...@cs...> - 2003-07-18 05:31:52
|
On Thu, 17 Jul 2003, Dave Makalsky wrote: > Hi: > > Please encourage 3311 students to join the etester-users list by going > to http://lists.sourceforge.net/lists/listinfo/etester-users > Done! Ali > We will save the etester-devel list for development issues. > > Cheers, > > DM > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: VM Ware > With VMware you can run multiple operating systems on a single machine. > WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the > same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 > _______________________________________________ > Etester-users mailing list > Ete...@li... > https://lists.sourceforge.net/lists/listinfo/etester-users > |
|
From: Jonathan S. O. <jon...@yo...> - 2003-07-18 04:16:30
|
> make is
> local
> t1 : expanded UNIT_TEST1
> t2 : expanded UNIT_TEST2
> do
> add_test(t1)
> add_test(t2)
> run
> to_html("tests.html"
> end
Very interesting idea. The "expanded" is a bit strange, but I could live
with it.
JSO
P.S. How come, when I do a reply, I get "dm" and not
"ete...@li...". Is there some setting you can set?
|
|
From: Dave M. <dm...@cs...> - 2003-07-18 04:00:07
|
Hi: Please encourage 3311 students to join the etester-users list by going to http://lists.sourceforge.net/lists/listinfo/etester-users We will save the etester-devel list for development issues. Cheers, DM |
|
From: Dave M. <dm...@cs...> - 2003-07-18 03:42:59
|
> > >P.S. How come, when I do a reply, I get "dm" and not >"ete...@li...". Is there some setting you can set? > I think I just fixed it. Cheers, DM |
|
From: <dm...@cs...> - 2003-07-17 21:40:34
|
Hi:
Jonathan made the correct observation that the creation feature in subclasses of
TEST_SUITE are unnecessarily complex.
for example consider the following class ALL_TESTS which runs UNIT_TEST1 and
UNIT_TEST2
the make would look something as follows:
make is
local t1 : UNIT_TEST1; t2 : UNIT_TEST2
do
create t1.make
create t2.make
add_test(t1)
add_test(t2)
run
to_html("tests.html"
end
we can simplify this overhead, by requiring that the UNIT_TESTS are expanded
types; thus, the make will now look as follows:
make is
local
t1 : expanded UNIT_TEST1
t2 : expanded UNIT_TEST2
do
add_test(t1)
add_test(t2)
run
to_html("tests.html"
end
What do you all think?
Cheers,
DM
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
|