User macnamee - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:29:42Z http://stackoverflow.com/feeds/user/15465 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/498212#498212 1 Answer by macnamee for What real life bad habits has programming given you? macnamee 2009-01-31T04:03:13Z 2009-01-31T04:03:13Z <p>I when driving my car at night I put my lights on high beam and then expect to be able to go brighter and brighter, a nice round number like 16 brightness levels will do.</p> <p>In the same way I expect to be able to zoom in on stuff in real life. </p> http://stackoverflow.com/questions/7440/what-do-you-use-to-unit-test-your-web-ui/101373#101373 2 Answer by macnamee for What do you use to Unit-Test your Web UI? macnamee 2008-09-19T12:15:47Z 2008-09-19T12:15:47Z <p>We use Visual Studio 2008 Tester Edition. </p> <p><strong>Pros:</strong> Very good at capturing user interaction</p> <p>Captures Ajax calls</p> <p>It is very easy to map user input to a database, XML or CSV file</p> <p>The captured test can be converted to C# for more control</p> <p>The same tests can be used for load testing and code coverage</p> <p><strong>Cons:</strong></p> <p>VS2008 Tester Edition is a seperate SKU from the normal Developer Edition, which means extra cost</p> <p>You may be alergic to Microsoft ;-)</p> <p>We have used it very effectively on projects, however there a lot of effort involved in keeping tests up to date, every time you change a screen the test may need to be re-recorded</p> <p>We tend to keep the tests short and sharp, do one thing and get out instead of recording 10 minutes worth of clicking around in a single test.</p> <p><strong>We have a few standard UI test types:</strong></p> <p><strong>Menu Test:</strong> Log in as a specific user (or user type/role) and make sure all the required menu items are available</p> <p><strong>Validation Test:</strong> Open a page and click save without entering any data, ensure that all the validation warnings appear. Complete required fields one at a time and check that the warning messages disappear when they are supposed to.</p> <p><strong>Search Test:</strong> Search using data from your database or a data file and ensure the correct data is returned by the search</p> <p><strong>Data Entry Test:</strong> Create new recrords from a data file, cleanup the database to allow tests to run multiple times</p> <p>UI Testing is quite time consuming but the comfort feeling you get when a few hundred tests pass before you release a new version is priceless.</p> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/91783#91783 79 Answer by macnamee for Confessions of your worst WTF Moment. (What not to do.) macnamee 2008-09-18T11:35:11Z 2008-09-18T11:35:11Z <p>I worked for a large bank and added an error message to a piece of code that the application should never have been able to reach (theoretically)...</p> <p>One Monday morning the unthinkable happened. The error message was proudly displayed on over 10,000 monitors across 1800 branches, and would return when you dismiss the message.</p> <p>The message read: "If you can see this message the system is all F**KED UP and we might as well go home. Have a nice day."</p> <p>Thank goodness this happened before source control systems were implemented at the bank.</p>