Wednesday, May 19, 2004

This article will try to give an rough overview of the MbUnit vision of tests, and consequently it's architecture. It's contains some material of a previous CodeProject article.

Why MbUnit ?

Unit testing is a great tool for ensuring an application quality and frameworks like NUnit or csUnit have made it very simple to implement. However, as the number of tests begins to grow, the need for more functionalities begin to show up. The above frameworks are based on the Simple Test Pattern which is basically the sequence of SetUp, Test, TearDown actions. Although highly generic, this solution lets a lot of work to be done by the test writer. Sadely, there is no easy way to derive and include a new "fixture" type in those frameworks.

MbUnit is simply born from the fact that I wanted a new fixture and integrating it into existing frameworks was nearly impossible (I was also resting from a knee surgery at hospital with nothing else to do than coding).

Illustrating example

In order to make things clear, I will refer to an example while explaining how MbUnit works. Let me consider the Simple Test Pattern which is implemented by most test unit framework available. This is the classic way of writing unit test as described in the figure below. A TestFixture attribute tags the test class, one SetUp method, tests are done in the Test tagged method and clean up is performed in TearDown tagged method. This is illustrated in the left of the figure.

Attribute -> Run -> Invoker

The kernel of MbUnit is  composed of different components that work in a serial way. The first component is the fixture attribute

The fixture attribute is used to tag the classes that contain unit tests (TestFixtureAttribute is a fixture attribute). The new thing in MbUnit is that each fixture attribute contains the execution logic of the fixture which is returned at run-time under the form of a Run (IRun interface). In the case of the example, the TestFixtureAttribute is defined as a sequence of SetUp, Test and TearDown:

public class TestFixtureAttribute : TestFixturePatternAttribute 
{
     public override IRun GetRun()
     {
          SequenceRun runs = new SequenceRun();
            
          // setup
          OptionalMethodRun setup = new
                              OptionalMethodRun(typeof(SetUpAttribute),false);
          runs.Runs.Add( setup );
            
          //tests
          MethodRun test =new MethodRun(typeof(TestPatternAttribute),true,true);
          runs.Runs.Add(test);
            
          // tear down
          OptionalMethodRun tearDown = new
                           OptionalMethodRun(typeof(TearDownAttribute),false);
          runs.Runs.Add(tearDown);
            
          return runs;                        
     }
}

where

  • TestFixturePatternAttribute is the abstract base class for all new fixture attribute in MbUnit,
  • the GetRun method is called by the MbUnit core to know what is the execution path of the fixture. The fixture can use built-in basic attributes to build it's execution path.
  • An IRun instance can represent the call to a method, or to a sequence of methods, etc...
  • SequenceRun is a sequence of IRun's,
  • MethodRun is a IRun instance that wraps a call to a method tagged by a predefined attribute.
  • OptionalMethodRun is inherited from MethodRun and describes optional methods.

The IRun object will create an execution tree  by exploring the tagged type. Each node of the tree contains a RunInvoker (IRunInvoker interface). The RunInvoker is in charge for calling the method, garding the execptions, loading data, etc... On our sample fixture, there are two tests that the Run will extract:

When the tree is built, we just extract all the possible path from the root node to the leaves to extract the different possible tests. Each of these path is called a Pipe (RunPipe class).

In the GUI, the RunPipe instances are attached to the TreeNode nodes so you can easily select and execute separately the tests. This ensures that the test execution are isolated.

This architecture brings a lot of flexibility (and complexity) on the kind of fixtures that can be defined. Any user can define it's own fixture and use MbUnit to execute it.

posted on Thursday, May 20, 2004 1:22:00 AM UTC  #    Comments [4]
Tracked by:
http://localhost/cs/blogs/eden/archive/2005/07/10/test-driven-development-part-i... [Pingback]
http://www.google.com/search?q=pcylmmnc [Pingback]
http://www.libri-online.org/IMG/3/ordervaliumonline.htm [Pingback]
http://www.libri-online.org/IMG/3/prescription-diet-pills.htm [Pingback]
http://impactmerch.com/home/catalog/2/ordercialis.htm [Pingback]
http://impactmerch.com/home/catalog/4/paxil.htm [Pingback]
http://rebel-interactive.com/demo/catalog/3/pictures-of-generic-xanax.htm [Pingback]
http://www.jump-gate.com/forum/inc/4/viagraonline.htm [Pingback]
http://rebel-interactive.com/demo/catalog/2/tadalafilgenericcialis.htm [Pingback]
http://rebel-interactive.com/demo/catalog/2/southbeachdiet.htm [Pingback]
http://www.jump-gate.com/forum/inc/2/generic-viagra.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/3/valium.htm [Pingback]
http://www.jump-gate.com/forum/inc/3/carisoprodol-online.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/2/paxil.htm [Pingback]
http://www.jump-gate.com/forum/inc/2/genericcialis.htm [Pingback]
http://impactmerch.com/home/catalog/3/xanax.htm [Pingback]
http://impactmerch.com/home/catalog/3/hoodia.htm [Pingback]
http://rebel-interactive.com/demo/catalog/3/ativan.htm [Pingback]
http://mariarte.net/alltomcostablanca/img/1/genericviagra.htm [Pingback]
http://impactmerch.com/home/catalog/1/buy-cialis.htm [Pingback]
http://impactmerch.com/home/catalog/1/buy-viagra-online.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/3/viagraonline.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/3/celexa.htm [Pingback]
http://rebel-interactive.com/demo/catalog/1/pharmacy-viagra.htm [Pingback]
http://www.jump-gate.com/forum/inc/1/buycialisonline.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/4/diabetes.htm [Pingback]
http://www.jump-gate.com/forum/inc/1/health.htm [Pingback]
http://www.jump-gate.com/forum/inc/3/order-viagra.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/3/zoloft.htm [Pingback]
http://mariarte.net/alltomcostablanca/img/3/cheapcialis.htm [Pingback]
http://impactmerch.com/home/catalog/1/levitra.htm [Pingback]
http://mariarte.net/alltomcostablanca/img/4/purchase-soma.htm [Pingback]
http://rebel-interactive.com/demo/catalog/1/prescriptiondietpills.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/4/xenical.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/1/soma.htm [Pingback]
http://www.jump-gate.com/forum/inc/3/vicodin.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/4/ultram-online.htm [Pingback]
http://impactmerch.com/home/catalog/3/propecia.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/1/fioricet.htm [Pingback]
http://www.orientationsnova.com/boutique/images/misc/2/ambien.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/2/buy-valium.htm [Pingback]
http://impactmerch.com/home/catalog/4/cheap-tramadol.htm [Pingback]
http://mariarte.net/alltomcostablanca/img/3/meridiacheap.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/3/ativan.htm [Pingback]
http://rebel-interactive.com/demo/catalog/4/phentermineadipex.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/2/levitra-buy.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/4/health-and-beauty.htm [Pingback]
http://rebel-interactive.com/demo/catalog/3/levitra-side-effects.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/2/valium.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/1/hydrocodone.htm [Pingback]
http://www.yakimafarmersmarket.org/assets/inc/4/vitamin.htm [Pingback]
http://rebel-interactive.com/demo/catalog/2/buy-30mg-phentermine.htm [Pingback]
http://impactmerch.com/home/catalog/3/picturesofgenericxanax.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/ativan.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/4/viagra-pill.htm [Pingback]
http://indonesiacommerce.com/support/documentation/1/buy-viagra-online.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/4/weight-loss-supplement.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/medicalbilling.htm [Pingback]
http://indonesiacommerce.com/support/documentation/2/soma.htm [Pingback]
http://indonesiacommerce.com/support/documentation/4/genericcialis.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/3/ambien.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/3/order-viagra.htm [Pingback]
http://www.twojopis.pl/dump/macro/2/cialis-online.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/2/weightlossprogram.htm [Pingback]
http://www.grafo.com.pl/item/misc/3/ultram-online.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/4/xenical.htm [Pingback]
http://www.kataloog.info/digits/misc/2/fioricet.htm [Pingback]
http://indonesiacommerce.com/support/documentation/3/hydrocodone.htm [Pingback]
http://www.grafo.com.pl/item/misc/3/buy-carisoprodol.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/1/buy-cialis.htm [Pingback]
http://www.grafo.com.pl/item/misc/1/vicodin.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/4/carisoprodol-350mg.htm [Pingback]
http://www.kataloog.info/digits/misc/1/carisoprodol.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/buy-soma.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/1/diet.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/2/alprazolam.htm [Pingback]
http://indonesiacommerce.com/support/documentation/2/xanax.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/1/carisoprodol.htm [Pingback]
http://www.twojopis.pl/dump/macro/2/soma.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/1/buy-hydrocodone.htm [Pingback]
http://www.grafo.com.pl/item/misc/4/order-tramadol.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/1/order-cialis.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/4/meridiadietpill.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/3/buyultram.htm [Pingback]
http://www.grafo.com.pl/item/misc/1/nexium.htm [Pingback]
http://indonesiacommerce.com/support/documentation/3/order-viagra.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/3/cheap-cialis.htm [Pingback]
http://www.twojopis.pl/dump/macro/3/health.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/doctor.htm [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/3/carisoprodol-online.h... [Pingback]
http://eastjava.com/tourism/surabaya/guestbook/templates/4/levitra-buy.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/3/phentermine-prescription.htm [Pingback]
http://www.twojopis.pl/dump/macro/1/tramadol.htm [Pingback]
http://www.grafo.com.pl/item/misc/2/xenical.htm [Pingback]
http://indonesiacommerce.com/support/documentation/4/xenical.htm [Pingback]
http://indonesiacommerce.com/support/documentation/1/buy-cialis.htm [Pingback]
http://www.twojopis.pl/dump/macro/3/carisoprodol-online.htm [Pingback]
http://www.grafo.com.pl/item/misc/2/fitnessequipment.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/2/weight-loss-pill.htm [Pingback]
http://www.twojopis.pl/dump/macro/3/ambien.htm [Pingback]
http://www.grafo.com.pl/item/misc/1/paxil.htm [Pingback]
http://indonesiacommerce.com/support/documentation/2/pharmacy.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/generic-cialis.htm [Pingback]
http://www.kataloog.info/digits/misc/1/pharmacy.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/2/hoodiadietpills.htm [Pingback]
http://www.kataloog.info/digits/misc/2/lipitor.htm [Pingback]
http://rattanland.com/teakprod_pics/misc/3/meridia-online.htm [Pingback]
http://www.kataloog.info/digits/misc/2/hydrocodone.htm [Pingback]
http://www.twojopis.pl/dump/macro/4/viagraonline.htm [Pingback]
http://www.kataloog.info/digits/misc/4/meridia.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/2/weight-loss-supplement.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/4/buycarisoprodol.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/buy-vicodin.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/ambien.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/3/hydrocodone.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/3/cheapcialis.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/carisoprodol.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/2/diet-pills-online.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/buy-tramadol-online.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/2/buy-soma.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/1/buyviagraonline.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/1/buy-xanax-online.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/3/onlinealprazolam.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/soma.htm [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/propecia.htm [Pingback]
http://jaychantell.com/galleryb/albums/misc/4/vitaminc.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/1/tramadol-online.ht... [Pingback]
http://tennesseebloggers.com/cgi-bin/db/3/cheap-viagra.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/1/buy-cialis-online.... [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/ordercialis.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/1/pharmacy.htm [Pingback]
http://job-interview-advice.net/careerdoover/wp-content/inc/2/cheapviagra.htm [Pingback]
http://www.google.com/search?q=npfyyzyn [Pingback]
http://www.molodiez.org/archive/images/old/1/tramadolcod.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/4/doctor.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/xanax.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/1/dietpillsonline.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/1/cialisonline.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/2/cialis-online.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/orderviagra.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/3/alprazolam.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/2/ultram.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/1/vicodin.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/4/diet-pills.htm [Pingback]
http://www.molodiez.org/archive/images/old/1/levitra.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/4/buy-viagra-online.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/1/xenical.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/2/carisoprodol.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/weight-loss.htm [Pingback]
http://www.slavophilia.com/cgi-bin/yabb/Cache/3/soma.htm [Pingback]
http://www.molodiez.org/archive/images/old/4/prescription-diet-pills.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/3/weightloss.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/1/buy-xanax-online.htm [Pingback]
http://www.molodiez.org/archive/images/old/3/hoodialossweight.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/3/zyrtec.htm [Pingback]
http://www.unavuelta.com/Fotos/Culo/1/medical-billing.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/tramadol-online.htm [Pingback]
http://ils3.com/links/inc/1/buy-xanax-on-line.htm [Pingback]
http://ils3.com/links/inc/2/zyrtec.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/buysoma.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/levitra.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/ambien.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/2/order-cialis.htm [Pingback]
http://ils3.com/links/inc/4/phentermine-prescription.htm [Pingback]
http://ils3.com/links/inc/4/buypropeciaonline.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/xanax.htm [Pingback]
http://ils3.com/links/inc/2/effexor.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/ultram.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/1/buy-cialis.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/4/adipex.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/pharmacy.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/4/healthandbeauty.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/4/hydrocodone.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/ordercialis.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/1/buy-soma.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/4/diet-pills.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/orderviagra.htm [Pingback]
http://ils3.com/links/inc/1/xenical.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/3/vitamin.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/3/phentermineonline.htm [Pingback]
http://ils3.com/links/inc/2/meridia-weight-loss.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/2/buyviagraonline.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/cheaptramadol.htm [Pingback]
http://ils3.com/links/inc/4/vitamin-c.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/1/health.htm [Pingback]
http://ils3.com/links/inc/3/ephedra-diet-pill.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/buy-cialis.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/1/vicodin.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/2/pharmacy.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/2/valium.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/1/fioricet.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/3/carisoprodol.htm [Pingback]
http://wiredinitiative.com/search/searchdata/db/4/vitamin.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/4/doctor.htm [Pingback]
http://absoblogginlutely.net/gallery/include/misc/2/cialisonline.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/2/levitra.htm [Pingback]
http://www.classical-composers.org/captcha/tempimage/3/buy-cialis-online.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/4/order-tramadol.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/2/propecia.htm [Pingback]
http://www.dustcollectorexperts.com/resources/img/2/doctor.htm [Pingback]
http://bannerbanner.us/bp/1/buypropecia.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/soma-cheap.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/3/buy-tramadol-online.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/phentermine-adipex.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/1/drug.htm [Pingback]
http://bannerbanner.us/bp/1/prescription-drug.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/vicodin-online.htm [Pingback]
http://bannerbanner.us/bp/1/drug.htm [Pingback]
http://bannerbanner.us/bp/1/buytramadolnow.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/1/celebrex.htm [Pingback]
http://bannerbanner.us/bp/3/generic-valium.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/4/zoloft.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/4/meridia.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/buy-soma.htm [Pingback]
http://bannerbanner.us/bp/2/ultram-online.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/4/meridia.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/1/vicodin.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/2/buy-phentermine.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/3/pharmacy.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/3/vitaminc.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/hydrocodone-vicodin.htm [Pingback]
http://bannerbanner.us/bp/1/celexa.htm [Pingback]
http://bannerbanner.us/bp/2/viagradiscount.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/diet.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/generic-viagra.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/3/buyultram.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/3/nexium.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/buycialis.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/cvspharmacy.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/2/paxil.htm [Pingback]
http://m5studios.com/callcenter/misc/2/zyrtec.htm [Pingback]
http://m5studios.com/callcenter/misc/3/canadian-pharmacy.htm [Pingback]
http://m5studios.com/callcenter/misc/2/dietpillphentermine.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/2/buycialisonline.htm [Pingback]
http://bannerbanner.us/bp/4/canadian-pharmacy.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/1/tramadol-online.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/3/vitamin.htm [Pingback]
http://bannerbanner.us/bp/4/vitamin-c.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/2/buytramadolonline.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/1/cheap-cialis.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/2/zyrtec.htm [Pingback]
http://bannerbanner.us/bp/2/diet-pill-phentermine.htm [Pingback]
http://m5studios.com/callcenter/misc/4/phentermine-adipex.htm [Pingback]
http://bannerbanner.us/bp/1/cheap-cialis.htm [Pingback]
http://palmtreecomputersystems.com/livechat/misc/4/weight-loss-supplement.htm [Pingback]
http://bannerbanner.us/bp/4/purchase-phentermine.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/4/fitness-equipment.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/2/cheap-tramadol.htm [Pingback]
http://crtransit.org/zORIGsite/uploads/1/generic-viagra.htm [Pingback]
http://inthefieldonline.net/aroundme/asset/misc/3/buy-hydrocodone.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/2/orderviagra.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/1/fioricet.htm [Pingback]
http://emptystreets.net/anxiety/cache/inc/2/xanax.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/1/levitra.htm [Pingback]
http://buymasterpiece.com/directory/arts/paintings/2/valium.htm [Pingback]
http://www.focuspocus.org/test/inc/4/weightloss.htm [Pingback]
http://becauseclothing.com/shop/images/misc/3/adipex.htm [Pingback]
http://www.focuspocus.org/test/inc/1/levitra.htm [Pingback]
http://www.generator.ie/userfiles/tmp/4/buy-tramadol-online.htm [Pingback]
http://www.aircoach.ie/news/img/1/tramadol.htm [Pingback]
http://www.aircoach.ie/news/img/2/carisoprodol.htm [Pingback]
http://www.focuspocus.org/test/inc/2/buycialis.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/4/diet-pills.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/4/prescription-drug.htm [Pingback]
http://becauseclothing.com/shop/images/misc/2/propecia.htm [Pingback]
http://zoeradio.com/archives/2004/1/weight-watchers.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/3/diet-pill-phentermine.htm [Pingback]
http://ronhollanddesign.com/css/inc/3/buy-valium.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/3/order-viagra.htm [Pingback]
http://zoeradio.com/archives/2004/1/pharmacy.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/2/buy-online-soma.htm [Pingback]
http://zoeradio.com/archives/2004/2/nexium.htm [Pingback]
http://ronhollanddesign.com/css/inc/2/genericviagra.htm [Pingback]
http://aleembawany.com/wp-content/inc/1/cheap-cialis.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/1/buyxanaxonline.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/3/viagra-online.htm [Pingback]
http://particles.org/forum/misc/3/online-order-phentermine.htm [Pingback]
http://particles.org/forum/misc/1/drug.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/2/diet.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/1/levitra.htm [Pingback]
http://www.aircoach.ie/news/img/4/vicodin.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/1/drug.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/2/buy-cialis.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/1/xanax.htm [Pingback]
http://particles.org/forum/misc/4/tramadolultram.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/4/health.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/1/cheapcialis.htm [Pingback]
http://particles.org/forum/misc/4/buy-vicodin.htm [Pingback]
http://becauseclothing.com/shop/images/misc/2/nexium.htm [Pingback]
http://aleembawany.com/wp-content/inc/4/viagra-discount.htm [Pingback]
http://particles.org/forum/misc/4/prescription-tramadol.htm [Pingback]
http://chatcake.com/tmp/2/weightlosstip.htm [Pingback]
http://thelosthub.com/templates_c/1/drug.htm [Pingback]
http://urdustan.com/catalog/images/sys/2/pharmacy.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/2/vitamin.htm [Pingback]
http://www.google.com/search?q=noiaeefq [Pingback]
http://chatcake.com/tmp/1/meridia-online.htm [Pingback]
http://e-rat.org/aaarg/images/misc/1/tramadol-online.htm [Pingback]
http://thelosthub.com/templates_c/2/buyonlinesoma.htm [Pingback]
http://powerlance.com/template/misc/2/prescription-drug.htm [Pingback]
http://buildguide.net/forum/templates/subRed/1/tramadol-online.htm [Pingback]
http://buildguide.net/forum/templates/subRed/3/pharmacy.htm [Pingback]
http://thelosthub.com/templates_c/3/prescription-drug.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/buy-soma.htm [Pingback]
http://thelosthub.com/templates_c/3/vitamin.htm [Pingback]
http://chatcake.com/tmp/3/hoodia-diet-pills.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/4/levitrabuy.htm [Pingback]
http://thelosthub.com/templates_c/4/ultram-online.htm [Pingback]
http://urdustan.com/catalog/images/sys/1/diet.htm [Pingback]
http://e-rat.org/aaarg/images/misc/2/vicodin.htm [Pingback]
http://arkarpa.org/joomla/images/misc/3/buy-valium.htm [Pingback]
http://kitaabghar.com/dir/javascript/2/buy-xanax-on-line.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/order-viagra.htm [Pingback]
http://thelosthub.com/templates_c/3/buy-propecia.htm [Pingback]
http://thelosthub.com/templates_c/2/diet-pill-phentermine.htm [Pingback]
http://e-rat.org/aaarg/images/misc/1/levitra.htm [Pingback]
http://e-rat.org/aaarg/images/misc/4/viagra-online.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/3/ambien.htm [Pingback]
http://powerlance.com/template/misc/3/phentermineprescription.htm [Pingback]
http://powerlance.com/template/misc/4/order-hydrocodone.htm [Pingback]
http://urdustan.com/catalog/images/sys/1/levitra.htm [Pingback]
Monday, June 06, 2005 6:00:51 PM UTC
Geek Noise
Monday, June 06, 2005 6:00:51 PM UTC
Barry Gervin's Software Architecture Perspectives
Monday, June 06, 2005 6:00:53 PM UTC
Barry Gervin's Software Architecture Perspectives
Monday, June 06, 2005 6:00:56 PM UTC
Wow, superb!
<br>Thanks.
Diana
Comments are closed.