-
Archives
- September 2022
- February 2017
- June 2016
- May 2015
- September 2014
- August 2014
- June 2014
- March 2014
- September 2013
- July 2013
- April 2013
- February 2013
- December 2012
- April 2012
- March 2012
- February 2012
- January 2012
- May 2011
- April 2011
- March 2011
- December 2010
- November 2010
- October 2010
- September 2010
- June 2009
- May 2009
- April 2009
- March 2009
- July 2007
- June 2007
- May 2007
- March 2007
- January 2007
- November 2006
- September 2006
- August 2006
- May 2006
- December 2005
- October 2005
- August 2005
- May 2005
- April 2005
- January 2005
- December 2004
-
Meta
Tag Archives: testing
I Didn’t Mean to Break It, Really. :(
Some people feel that the tester’s job is to break software, whereas the developer’s job for performing testing activities is to make sure software works. This dichotomy, or disconnect, can sometimes be fun. Like yesterday… At Mimeo.com, our ability to … Continue reading
Oh snap – I denied “Everyone” permissions from my MSMQ
Yeah, so in a brilliant move today, an MSMQ on my QA box was accidentally destroyed maliciously when I set Deny permissions for “Everyone”. Oops. Luckily this StackOverflow response from user Houman saved my ass. Simply navigate to C:\Windows\System32\msmq\storage\lqs and … Continue reading
Inspiration in Everyday Things
I was lucky enough to attend CAST 2014 last week. CAST is a wonderful conference bringing some of great minds of the testing community together under one roof. Michael Larson has great summaries of the two day conference on his … Continue reading
Better Workaround for AppFabric Cache’s Tracing Hatred
As a follow up from my last post, here’s a simple extension method to forcibly restore the default trace listener every time you invoke an AppFabric Caching Administration Management cmdlet. It’s not the prettiest code, but it’s functional: This file … Continue reading
AppFabric DataCacheServerLogManager Hates Your Trace.WriteLines
I like to fill my test code with TONS of logging. I log damn near everything because I hate it when the team has to waste time answering, “Can you get me a repro?” when we can just peruse the … Continue reading
FusLogVw and ILDasm to the Rescue
I spent a bunch of time helping out one of my devs yesterday with a problem that arose from an absolutely trivial change. Isn’t that how all debugging sessions start? “It was a simple change, I don’t understand why these … Continue reading
Posted in testing, Work
Tagged debugging, netduino toubleshooting, test, testing, vs2012, work
Leave a comment
Born to Test?
There are those random times where you find a bug and think, “Damn, I was born to test!” The other day I found a bug where this was the case – quite literally… At Mimeo.com, we have a set of … Continue reading
Using UISpy to Handle the Windows Security Dialog in Windows 7
In the previous post, I gave a solution for automating the dreaded “Windows Security” dialog in IE using UIAutomation. Reader Ven left this comment: “Hey, This is exactly what I’ve been looking for, but when I seem to run it … Continue reading
Posted in testing, Work
Tagged automation, selenium, test, testing, visual studio 2012, vs2012, work
7 Comments
Automating the “Windows Security” Dialog with UIAutomation
I decided to finally learn some Selenium in order to test an internal Line of Business (LOB) web application. After a quick crash course on Selenium automation, I got a prototype for my test initialization working, but quickly hit this: … Continue reading
Visual Studio 2012: Can’t Debug Tests When Code Coverage is Enabled
We ran into a nasty problem yesterday at work where we couldn’t reliably debug into code when debugging a test in Visual Studio 2012. Breakpoints weren’t getting hit, lines were jumping around as if the code was optimized, all around … Continue reading