Skip to main content

#ProudDadMoment - My Son thinking like a Tester

The other night I was bathing my 2 kids, and they wanted me to read them a story. My daughter chose a book on time and clocks (I can't remember the name of the book right now), so I sat down and began to read it to them as they had a bath.

It was full of interesting stuff (to them at least), it would explain what can happen in different time-frames. One of the examples it gave was for 1 minute. It said:

In 1 minute a Cheetah can run around a race track 4 times

This is pretty cool, highlighting how quick a Cheetah actually is. Now the tester in me, instantly thought "well depends how long the race track is, I'm pretty sure it's talking about a 400m race track - but still it should be clear"... Then my son, as if he is reading my mind says "It depends how long a race track is"... I looked at him and said "You're right! It does depend on how long the race track is!"

Why am I talking about this? How does it relate to Testing?

Well a lot of testing involves challenging assumptions, it involves questioning the norm and thinking outside of the box.  It involves being sceptical and nit-picking which is hard at times when you're sat in a team, who are often your friends, it becomes important in how you say things and it isn't just down to what you say.

So next time someone says something to you, or you read something that might lead you to naturally assume something, think again, re-read what you read, or run through what that person said and question it in some way, it might not change anything about what was originally said/read, but there is a chance it could drastically change the initial understanding.

Comments

  1. Admiring the commitment you put into your site and detailed information you offer. It's good to come across a post every once in a while that isn't the same unwanted rehashed material. Wonderful read! I've bookmarked your site and I'm adding your RSS feeds to my Google account. sem search engine marketing

    ReplyDelete
  2. Hey! This is my first comment here so I just wanted to give a quick shout out and say I truly enjoy reading through your articles. Can you recommend any other posts/websites/forums that cover the same topics? Thank you so much! Excavator Singapore

    ReplyDelete
  3. My spouse and i got really contented that Louis could round up his preliminary research through the ideas he received while using the web site. It is now and again perplexing to simply find yourself giving for free key points which often many people have been selling. And we also grasp we have got you to thank for this. Most of the explanations you have made, the easy web site menu, the relationships you aid to engender - it's got most incredible, and it's assisting our son and the family reason why that issue is thrilling, which is highly serious. Thank you for everything! Parc clematis condo

    ReplyDelete
  4. I just couldn't depart your website prior to suggesting that I extremely enjoyed the standard information a person provide for your visitors? Is going to be back often to check up on new posts metal wall art wholesale

    ReplyDelete
  5. Attractive section of content. I just stumbled upon your weblog and in accession capital to assert that I acquire in fact enjoyed account your blog posts. Anyway I will be subscribing to your feeds and even I achievement you access consistently quickly. ppc marketing

    ReplyDelete
  6. Hi there this is somewhat of off topic but I was wanting to know if blogs use WYSIWYG editors or if you have to manually code with HTML. I'm starting a blog soon but have no coding knowledge so I wanted to get advice from someone with experience. Any help would be greatly appreciated! inventory financing

    ReplyDelete
  7. I love what you guys are up too. Such clever work and reporting! Keep up the awesome works guys I've incorporated you guys to my blogroll.front door handles

    ReplyDelete
  8. Hello There. I found your blog using msn. This is a really well written article. I’ll be sure to bookmark it and come back to read more of your useful info. Thanks for the post. I will definitely comeback. internet marketing agency

    ReplyDelete
  9. I love your blog.. very nice colors & theme. Did you make this website yourself or did you hire someone to do it for you? Plz respond as I'm looking to create my own blog and would like to know where u got this from. thanks Stretch Film Manufacturer

    ReplyDelete

Post a Comment

Popular posts from this blog

Coding something simple.... or not! Taking a screenshot on error using Selenium WebDriver

I recently wrote a little function that takes a screenshot at the end of a test if it has errored. What sounded very simple at the start turned out to be quite a bit of work, and quite a few lines of code to handle certain scenarios! It's now over 50 lines of code! I'll start with what I had at the beginning, this was to simply take a screenshot in the working directory, we are using SpecFlow and Selenium to run the tests, so we are going to check if the ScenarioContext.Current.TestError isn't null, if it is, then using Selenium, take a screenshot (note the below code is a simplified version of what I had at the beginning). [AfterScenario]         public static void TakeScreenShotOnError()         {             if (ScenarioContext.Current.TestError == null) return;             var screenshotDriver = Driver as ITakesScreenshot;             if (screenshotD...

How to manage resources within new teams?

Working where I work we are constantly spinning up new teams to take on new workloads as business come up with new demands and new features they want developed and tested. The problem with this is how do we ensure the work of the newly spun up team is of sufficient quality. One method is by taking people from other established teams and placing them on the new team. This works great for the new team, but unfortunately it will oftenl eave the established team lacking in a resource whilst they try and fill the gap left by the person who has left. We are seeing this often with our offshore teams, it can be damaging to the team structure and the teams velocity, but try as I might, I can't think of another way around it. It's far easier to take 1 person from a team that is established than it is to build a whole new team from scratch. At least by leaving the core of a team in place, you should be guaranteeing that the new team are aware of any coding standards or any QA standard...

Considerations when creating automated tests

We recently released to a number of teams our automated regression pack that has been worked on over the past few months. This regression pack tests legacy code, but contains a large number of tests.  As a bit of background, a number of teams are working on new solutions whilst some are still working on legacy code. With this in mind we constructed an email with a list of guidelines when creating new tests that need to be added to this regression pack.  I figured that these can be quite broad so should apply for any organisation, so thought it would make an interesting blog post...  So here goes,  when creating automated tests, it's important to consider and adhere to the following: - Think about data . The tests need to retrieve or set the data they need without any manual intervention - This should help them be more robust and easier to run without manual intervention. - The tests need to be idempotent - By making it so that each test is standalone and does...