Presentations

Psychology of Testing at Wealthfront


Berkeley: Test Driven Development in Angular

RTAC2010: All hands on testing

Just wanted to share my presentation from the RTAC 2010 conference.

Slides

Handout

<angular/>: A Radically Different Way of Building AJAX Apps

source snippets

How JavaScript Works


Clean Code Talks – Unit Testing


Testing Design Skills – 1 What is Untestable

Testing Design Skills – 2 Ask for things


Testing Design Skills – 3 Global State


Testing Design Skills – 4 Inheritance


Testing Design Skills – 5 TDD

Demo

Testing Design Skills – 6 Value Objects vs Service Objects

Testing Design Skills – 7 Intro to GUICE

Testing Design Skills – 8 Mocking

15 Comments

15 responses so far ↓

  • Other problems with Singleton - Bashar’s Blog // Mar 13, 2010 at 12:20 pm

    [...] I could spent a few pages arguing and / or explaining those issues. Instead of that, I would recommend you to watch Miško Hevery’s presentations. [...]

  • spacer Shimi // Mar 25, 2010 at 2:27 am

    I like your work and I learned a lot from it.
    Do you have a link to the “Testing Services with Value Objects” presentation?

    Shimi

  • spacer misko // Mar 25, 2010 at 9:05 am

    @ Shimi,

    sorry, i don’t have that one recorded

  • spacer ayumilove // May 7, 2010 at 7:51 am

    could you make another presentation on Testing Services with Value Objects :O

  • » Example project workflow using SWCs // Jun 26, 2010 at 8:01 am

    [...] checkout those fantastic Mi?ko Hevery presentations. Mi?ko talks about why tests is so important, why beware of Singletons, how to use dependency [...]

  • » Example project workflow using SWCs // Jun 27, 2010 at 6:09 pm

    [...] checkout those fantastic Miško Hevery presentations. Miško talks about why tests is so important, why beware of Singletons, how to use dependency [...]

  • spacer Alex // Dec 21, 2010 at 8:33 pm

    Thanks for great presentations.
    Talk, related to functional approach and avoiding ‘if’ statements really helped to order my clustered knowledge bas into a single, focused one.
    One question about working with legacy applications: I have really evil Singleton of Singletons: it’s ResourceLocator, which is used application-wide to pull other Singletons (each one is totally untestable and out of my control: no interfaces, just plain classes, JNDI resources pulling in constructors, lots of static methods etc.) – I can’t mock them and/or substitute (because of JNDI in constructors). There’s no need to say, that dependent code is totally untestable. We can’t get rid of these proxies (it’s external systems proxies and we don’t own the codebase), but I really want to isolate all the new code from them. The only acceptable solution I found is to create separate interfaces, which will have same method signatures and use dynamic adapters, which will redirect all calls addressed from generated dynamic proxies to old Singletons. The only drawback: in case of any API changes we have to re-generate these interfaces to reflect the changes (it’s like relationship between Bean and Remote/Local interfaces in EJB). Any other possible solutions, how to isolate these proxies?

  • spacer misko // Dec 22, 2010 at 4:08 am

    @Alex,

    I think your solution is what I would have suggested as well. You need to put a layer of indirection between you and them. My only suggestion would be to not make the api match exactly what they give you but rather create an ideal API for yourself. That way your your code using these dependencies is simpler. Also if the external APIs change than the only things you have to change is the adapter and not all of the instances. You may have a hard time testing the adapters, but the rest of the system should be fine.

    – misko

  • spacer Aurélien // Mar 1, 2011 at 12:31 am

    Hi Misko,

    I’m thinking of using some of these slides, translating them (in french) and making a similar presentation in my company. What license are they under ? Are you OK with this ?
    Thanks for your great website & presentations !

  • spacer misko // Mar 1, 2011 at 11:37 am

    @Aurelien
    I have not released the docs under any official license, but you are free to use/translate the slides, as long as you keep a link to the originals for attribution. Other then that, feel free to spread the word, and educate others.

    – Misko

  • spacer Kevin // May 2, 2011 at 12:10 am

    Wow.. these talks are really helpful. It really changes the way I think about coding. I think you should write a book on this subject with more real work examples. I know I would buy this book so are the rest of my teammates.

  • spacer misko // May 5, 2011 at 9:21 am

    @Kevin,

    the thought has crossed my mind, but it is a lot of work. spacer

  • Extreme Enthusiasm » Blog Archive » How I remembered Object Thinking // Dec 13, 2011 at 2:58 pm

    [...] OOP. I learned about the GOF patterns. I learned about the SOLID principles. I learned how to write testable code. I learned how to do TDD for the infrastructure. I learned how to test-drive Chicago style and [...]

  • spacer Ernest // Mar 7, 2012 at 6:19 pm

    Misko,
    Great talks! At the end of your Clean Code talk on Global State and Singletons you make reference to some cards on what to look for in code reviews. Could you possibly make those available?

  • spacer misko // Mar 7, 2012 at 10:11 pm

    They are here: misko.hevery.com/code-reviewers-guide/

Leave a Comment

gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.