Methods & Tools Software Development Magazine

Software Development Magazine - Project Management, Programming, Software Testing

Scrum Expert - Articles, tools, videos, news and other resources on Agile, Scrum and Kanban

Methods & Tools - News, Facts & Comments Edition - May 2003

*** Numbers ************************************************************

* Testing tools

According to a survey published in Software Development Times, here are the types of testing tools mostly used by software developers:

  • Runtime debugger 69.2%
  • Performance tester 39.3%
  • Source code analyzer 33.1%
  • Web application load tester 31.0%
  • Web application performance tester 29.5%

At the bottom of the list, we find:

  • Regression tester 16.1%
  • Black-box tester 13.6%
  • White-box tester 9.0%

Source: Software Development Times, April 1, 2003

As you can see, most development teams work without tools to manage (and repeat) the functional testing activity. Testing remains a neglected area of software development. Sure, how could you find time to automate testing when you can hardly find enough time to perform tests at the end of projects? :-]

*** In Other's Words ***************************************************

* OO Revisited

Don't blame OO programming in general for the limitations of those who don't know how to apply the principle.

[...] The "we know all about objects so what else is new" attitude [...] is indeed widespread. In my experience it is largely unjustified. While many engineers and managers are familiar with the basic goals of object technology, only a minority has really understood the deeper concepts and started to apply them thoroughly. This can make life tough for object technology consultants and instructors: As every parent or educator knows, it is impossible to teach people something when they think they already know it.

I find that general intellectual sympathy with the principles of information hiding, data abstraction, taxonomy, reuse, systematic software construction – a attitude found fairly universally today – is not a good predictor of whether the person will actually apply these principles in software development.

[...] Do we have to apply every tenet of the OO canon, chapter and verse? I would tend to answer yes. It pays to be dogmatic here. It's hard to be "a little bit object-oriented" Little violations beget huge disasters, Y2K is the most visible example.

[...] Successful object technology is a mix of the two. We must understand the intellectual principles for all their worth, letting them permeate our entire approach to software development, never losing sight of the bigger challenges. And we must also be foxes, never relenting in our application of the rules, however elementary and mundane.

Source: Bertrand Meyer, "A Really Good Idea", Computer, December 1999

Even if the OO aura has faded, replaced by the component and web-based development trends, the sound principles provided by this approach are still useful. I would however not agree on the "all or nothing" approach of OO. Sometimes it is difficult to apply all principles in particular circumstances, mainly when you have to deal with an existing situation (people or application) that you cannot change entirely. Using every possible good practice is an improvement, even if you cannot claim to be "object oriented". This could be also an explanation for the success of the "component" rebranding of object orientation, which provides a less rigid approach.

------------------------------------------------------------------------

* Optimizing Optimization

For many programmers, performance is something you pay continuous attention to as you program. Every time you write a fragment of code, you consider the performance implications and code the program to maximize performance. This is an obvious technique – pity it works so badly.

Performance is not something you can work on in this way. It involves specific discipline. Some performance work comes from architectural decisions, some from a more tactical optimization activity. But what both share is the fact that it is difficult to make decisions about performance from just looking at the design. Rather, you have to actually run the code and measure performance.

Optimizing an existing program follows a specific set of steps. First, you need a profiler, - a program that can analyze how much time your program spends in its various part. Software performance has a 80/20 rule: 80 percent of the time is spent on about 20 percent of the code. Trying to optimize performance in the 80 percent of the code is futile, so the first order of business is to find that 20 percent of code. Trying to deduce where the program will spend time is also futile. I know plenty of experienced programmers who always get this wrong. You have to use a profiler.

To give the profiler something to chew on, perform some kind of automated run that reasonably simulate the program under its usual conditions. An automated test suite is a good starting point, but make sure you simulate the actual conditions. My colleague Dave Rice has a rule: "Never optimize a multiuser system with single-user tests." Experience has taught us that a multiuser database system has very different bottlenecks than a single user system – often focused around transaction interactions. The wrong set of tests can easily lead you to the wrong 20 percent of code.

Once you've found your bottlenecks, you have two choices: speed up the slow things or do the slow things less often. In either case, you must change the software. This is where having a well-designed piece of software really helps. It's much easier to optimize cohesive, loosely coupled modules. Breaking down a system into many small pieces lets you narrow down the bottlenecks. Having a good automated test suite makes it easier to spot the bugs that might slip in during optimization.

[...] In the end, however, performance is not an absolute. Getting a program to run faster costs money, and it's a business decision whether to invest in a quicker program.

Source: Martin Fowler, "Yet Another Optimization Article", IEEE Software, May/June 2002

I totally agree with the opinion of Martin Fowler: "Write a good clean program first and optimize it later."

------------------------------------------------------------------------

* Gaining Wisdom

To gain knowledge, add something every day; to gain wisdom, remove something every day.

Source: Lao Tzu

A reminder to all of us that would sometimes like to add this "just nice extra-features" to our software. It is often better to succeed in simplicity than to risk with complexity.

*** Books **************************************************************

* Naked Objects

If you liked the article of Richard Pawson about Naked Objects in our Spring 2003 issue, find more about it his book "Naked Objects"

Naked Objects is a radical approach that exposes the core business objects directly to the user, instead of masking them behind a task-oriented user interface. This book describes the business case for designing systems this way, outlines a lightweight methodology that you can adopt, and provides a short tutorial.

* Defines "Naked Objects" as an Open Source toolkit for prototyping expressive systems that you can freely download

* Covers theory and practice with several real-life illustrations of Naked Objects in practice

* Contains all the information necessary to construct a Naked Objects project

To buy it on amazon.com click below

http://www.amazon.com/exec/obidos/ASIN/0470844205/methotools-20

============================================

The content of this publication cannot be reproduced without prior written
consent of the publisher - Copyright 2003, Martinig & Associates

 
November 2022
October 2022
September 2022
August 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
December 2021
November 2021
October 2021
September 2021
August 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
December 2020
November 2020
October 2020
September 2020
August 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
December 2019
November 2019
October 2019
September 2019
August 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
December 2018
November 2018
October 2018
September 2018
August 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
December 2017
November 2017
October 2017
September 2017
August 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013
October 2013
September 2013
August 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
June 2012
May 2012
April 2012
March 2012
February 2012
January 2012
December 2011
November 2011
October 2011
September 2011
August 2011
June 2011
May 2011
April 2011
March 2011
February 2011
January 2011
December 2010
November 2010
October 2010
September 2010
August 2010
June 2010
May 2010
April 2010
March 2010
February 2010
January 2010
November 2009
October 2009
August 2009
May 2009
April 2009
February 2009
January 2009
November 2008
October 2008
August 2008
May 2008
April 2008
February 2008
January 2008
November 2007
October 2007
August 2007
May 2007
April 2007
February 2007
January 2007
November 2006
October 2006
August 2006
May 2006
April 2006
February 2006
January 2006
November 2005
October 2005
August 2005
May 2005
April 2005
February 2005
January 2005
November 2004
October 2004
August 2004
May 2004
April 2004
February 2004
January 2004
November 2003
October 2003
August 2003
May 2003
April 2003
February 2003
January 2003
November 2002
October 2002
May 2002
April 2002
February 2002
January 2002
November 2001
October 2001
May 2001
April 2001
February 2001
January 2001
Winter 2000
Fall 2000

Methods & Tools
is supported by


Testmatick.com

Software Testing
Magazine


The Scrum Expert