Headline: The only real way to be Agile is if you have healthy automated testing. (See Unicorn Series Overview for other topics.) Results Let’s start with some results of the practices described here: Quality: Customer reported bugs range from 1 to 10 per year, despite thousands of users Cost: There is no dedicated testing team […]
Archive for the ‘Technology’ Category
Unicorn Series–Automated Testing
Filed under: Technology | Tags: Agile, Azure, Unit Testing, Visual Studio
Static Code Analysis with .NET Core 2.1
Filed under: Technology | Tags: .NET Core, Code Analysis, VIsual Studio 2017
Headline: I prefer Microsoft.CodeAnalysis.FxCopAnalyzers over StyleCop.Analyzers. Why? Here are the two primary reasons: I can use rulesets I’ve used in the past I can share a ruleset across many projects for consistency Ok… 3. And there are tons of overly restrictive, or at the very least –very different, rules in StyleCop.Analyzeers. Conventions I’ll just refer […]
Unicorn Series Overview
Filed under: Technology, Work | Tags: Agile, ASP.NET, Best Practices, Cloud, Quality, TDD, Unit Testing, VIsual Studio 2017
Headline: All the modern software development practices really do make significant business impact. Contents Automated Testing Disclaimer: As usual, there is not information in this series that would be considered proprietary information for C&C Reservoirs. This is the overview and index for a series on software development practices the team I’m leading has been using […]
Getting Started with Git in VS 2017
Filed under: Technology | Tags: Git, VIsual Studio 2017, VSTS
This talks about some basic steps for getting started with Git repositories in Visual Studio 2017. This doesn’t talk about overall usage, but rather just how to get some things setup. Visual Studio 2017 already comes with basic support for Git. In this post I’m using Visual Studio 2017.3.3. The first think I did was […]
Windows Live Writer 2012 in June 2017
Some day OpenLiveWriter will replace Windows Live Writer (I hope)… But for now I use the Paste As Visual Studio Code plug in, and at the time of this writing, there’s nothing like that for OpenLiveWriter. Fortunately, at the bottom of this page is a location where you can download wlsetup-all.exe: https://answers.microsoft.com/en-us/windowslive/forum/livemail-wlinstall/windows-essentials-2012-microsoft-offline/0dbbd92a-991c-48d7-8157-26decd351da8 Then, there are […]
No Startup Sound for Windows 10
Filed under: Technology | Tags: Surface Pro 4, Windows 10
At least by default it doesn’t seem there is a startup sound. This is GREAT! I travelled this week and have no idea how many times I heard the Windows 7 startup sound. Why do you need a sound? The only real reason I can think of is because the startup is so slow. The […]
How can I unit test unsubscribing from an event? (C#)
I’ve seen some strange bugs that occur when you don’t properly unsubscribe from events. But it seems I’m always stuck when it comes to unit testing that. Well, I use Moq for most of my mocking and there are some techniques you can use for testing that your subscribed, namely by Raise(ing) the event in […]
Live Writer Lives On!
This is my first blog post being written from Open Live Writer. I suspect there are so many people to thank that I wouldn’t even know where to start. Details I’ve used Live Writer for years to create blog posts. When it looked like Live Writer would go away I probably tried 10 other authoring […]
Software Development Metrics
Filed under: Technology, Work | Tags: Metrics, Quality
Headline: For modern software development I’ve been working on some key metrics that seem to correlate to high quality and profitable software. List of Metrics Number of customer reported bugs Automated test code coverage Completed user stories Code analysis warnings Changesets per day Regressive bugs Number of broken builds Profitability There are two components to […]
What’s Your Quality Bar?
Filed under: Technology | Tags: Best Practices, Quality, Visual Studio
I put “New Horizontal Tab Group”, “Run Code Analysis on Solution” , and “Analyze Code Coverage for All Tests” on a Visual Studio Toolbar called “Quality”. Before you check-in The steps before checking in code should be: Get Latest Version Build Run Code Analysis on Solution Analyzed Code Coverage for All Tests Most advice as […]