Entries Tagged as 'Advice'
by Miško Hevery
I think of bugs as being classified into three fundamental kinds of bugs.
Logical: Logical bug is the most common and classical “bug.” This is your “if”s, “loop”s, and other logic in your code. It is by far the most common kind of bug in an application. (Think: it does the wrong thing)
Wiring: Wiring [...]
Tags: Advice · Testability
October 21st, 2008 · 1 Comment
Testability Explorer: Using Byte-Code Analysis to Engineer Lasting Social Changes in an Organization’s Software Development Process. (Or How to Get Developers to Write Testable Code)
Presented at 2008 OOPSLA by Miško Hevery a Best Practices Coach @ Google
Abstract
Testability Explorer is an open-source tool that identifies hard-to-test Java code. Testability Explorer provides a repeatable objective metric of [...]
Tags: Advice · OO · Testability · Testability Explorer
October 21st, 2008 · 9 Comments
by Miško Hevery
After reading the article on Singletons (the design anti-pattern) and how they are really global variables and dependency injection suggestion to simply pass in the reference to the singleton in a constructor (instead of looking them up in global state), many people incorrectly concluded that now they will have to pass the singleton [...]
Tags: Advice · OO · Testability
September 30th, 2008 · 5 Comments
by Miško Hevery
Dependency injection asks us to separate the new operators from the application logic. This separation forces your code to have factories which are responsible for wiring your application together. However, better than writing factories, we want to use automatic dependency injection such as GUICE to do the wiring for us. But can DI [...]
Tags: Advice · Testability
September 10th, 2008 · 4 Comments
(the other title: Your Application has a Wiring Problem)
In My main() Method Is Better Than Yours we looked into what a main() method should look like. There we introduced a clear separation between (1) the responsibility of constructing the object graph and (2) the responsibility of running the application. The reason that this separation is [...]
Tags: Advice · OO · Testability
September 10th, 2008 · 2 Comments
By Miško Hevery | Republished from alphaITJournal.com
In Part I of this series, we took a realistic look at what usually happens when we initiate change. We also took a look at the initial steps of effective change: defining a metric and getting people to accept it as a goal. In this second and final part, we’ll introduce two additional [...]
Tags: Advice
By Miško Hevery
People are good at turning concrete examples into generalization. The other way around, it does not work so well. So when I write about general concepts it is hard for people to know how to translate the general concept into concrete code. To remedy this I will try to show few examples of [...]
Tags: Advice · Rant · Testability
Since I have gotten lots of love/hate mail on the Singletons are Pathological Liars and Where Have All the Singletons Gone I feel obliged to to do some root cause analysis.
Lets get the definition right. There is Singleton the design pattern (Notice the capital “S” as in name of something) and there is a singleton [...]
Tags: Advice · Rant · Testability
by Miško Hevery
In Singletons are Pathological Liars we discussed the problems of having singletons in your code. Let’s build on that and answer the question “If I don’t have singletons how do I ensure there is only one instance of X and how do I get X to all of the places it is needed?”
An [...]
Tags: Advice · OO · Rant · Testability
by Miško Hevery | 19 August 2008 | republished from alphaITjournal
So you’ve figured out a better way of doing things, but how do you get everyone to change the way they work and start writing code in this better way? This is something I face daily in my line of work as a best practices [...]
Tags: Advice · Rant · Testability Explorer