Quotessence
Home / Quotes / Quote by Robi Aulia Abdi (@aksarataksa)

Quote by Robi Aulia Abdi (@aksarataksa)

Author

Robi Aulia Abdi (@aksarataksa)

Browse famous quotes and profile details for Robi Aulia Abdi (@aksarataksa). more

You May Also Like

“Some people mistakenly refer to software defects as bugs. When called bugs, they seem like pesky things that should be swatted or even ignored. This trivializes a critical problem and fosters a wrong attitude. Thus, when an engineer says there are only a few bugs left in a program, the reaction is one of relief. *Supposed, however, that we called them time bombs instead of bugs.* Would you feel the same sense of relief if a programmer told you that he had thoroughly tested a program and there were only a few time bombs left in it? Just using a different term changes your attitude entirely.”

“The approach shown... is a common pattern for testing exception-throwing behavior with JUnit. @Test public void missingValueRaisesException() throws Exception { try { new Template("${foo}").evaluate(); fail("evaluate() should throw an exception if " + "a variable was left without a value!"); } catch (MissingValueException expected) { } }”