🚀 TDD, Where Did It All Go Wrong (Ian Cooper)

Поделиться
HTML-код
  • Опубликовано: 19 дек 2017
  • ❗️ATTENTION ❗️
    Registration to DevTernity is running:
    👉 devternity.com
    Since Kent Beck wrote the book on TDD in 2002 a lot of words have been dedicated to the subject. But many of them propagated misunderstandings of Kent's original rules so that TDD practice bears little resemblance to Kent's original ideas. Key misunderstandings around what do I test, what is a unit test, and what is the 'public interface' have led to test suites that are brittle, hard to read, and do not support easy refactoring. In this talk, we re-discover Kent's original proposition, discover where key misunderstandings occurred and look at a better approach to TDD that supports software development instead of impeding it. Be prepared from some sacred cows to be slaughtered and fewer but better tests to be written.
  • НаукаНаука

Комментарии • 585

  • @simonvv1002
    @simonvv1002 4 года назад +681

    Notes I made during this presentation (just a dump, might be useful to some):
    - Test requirements, not low level
    - Test public API. Given when then
    - Test the exports from a module
    - Focus on higher-level
    - Test modules, not class
    - Refactoring is needed to see what is implementation and what is exports from module
    - Test behaviours
    - Think about your code as an api
    - Test the abstraction, not the implementation
    - Test are isolated and with shared fixture (to run quickly)
    - Red-green-refactor (go fast to working code)
    - No new tests during refactoring
    - Heavy coupling is the problem with all software
    - Thin public api
    - Refactoring = changing internals
    - Patterns in the refactoring
    - If you're not really sure, write tests for implementation (delete the tests)
    - Not classes, behaviours
    - Don't isolate classes in testing
    - Private methods (these are implementation details)

    • @vborovikov
      @vborovikov 3 года назад +11

      so it's just common sense?

    • @DanHaiduc
      @DanHaiduc 3 года назад +23

      @@vborovikov Yes, but people don't seem to be having it. Hence the need for this talk.

    • @DanHaiduc
      @DanHaiduc 3 года назад +8

      Also, keep tests fast (

    • @dyyd0
      @dyyd0 3 года назад +13

      @@DanHaiduc Clarification: whole test suite should run in under a few minutes, not just one unit test. And having DB communication during testing is OK as long as it is isolated from other tests (by either cleaning it or using exclusive instances or what ever. Basically memory based db that is recreated for each test).

    • @DanHaiduc
      @DanHaiduc 3 года назад +4

      @@dyyd0 You are absolutely right. After watching Fast Test, Slow Test I have realized that the whole test suite should run in **less than two seconds**. It is possible if you don't invoke any big frameworks during the tests:
      ruclips.net/video/RAxiiRPHS9k/видео.html

  • @kevinfleischer2049
    @kevinfleischer2049 3 года назад +184

    I like this talk. What I learned:
    "Tests protect something. You want them to protect requirements, not implementation details. Thats why you delete tests that were only there to make it happen, but are not a result of a requirement"

    • @DEvilParsnip
      @DEvilParsnip 2 года назад +7

      a beautiful TLDR , that you soooooooooo much.

    • @JorgetePanete
      @JorgetePanete 5 месяцев назад

      That's*

    • @TheDavidlloydjones
      @TheDavidlloydjones 5 месяцев назад

      That's loony, Kevin. Tests are small, mechanical procedures. They challenge mechanical workings of a program.
      Getting reuirements and design right is an intellecual (and political) process. It has to be done by people representing the interests being served by the work at hand.
      It's not a matter of test, it's a matter of debate and judgement.

    • @kevinfleischer2049
      @kevinfleischer2049 5 месяцев назад

      @@TheDavidlloydjones What you describe regarding requirements is not opposing to what I wrote.
      But you are wrong regarding how tests should be written. The way you describe will result in tests that break when you refactor SW. Thus your tests will hinder changes. It is a mistake that I've done in the past but one that is worth preventing.

    • @ForgottenKnight1
      @ForgottenKnight1 4 месяца назад

      When management makes the test coverage of some tool a "requirement" the whole TDD thing goes tits up. I've seen it a dozen times and a dozen times it has the same result - a lot of tests that don't test jack shit, they are just there to do some coverage by either "verifying" something or "testing" implementation details.

  • @alinaqvi2638
    @alinaqvi2638 5 лет назад +492

    This guy is speaking from hard earn't real-world experience. We need more engineers like him imparting their knowledge. Rather than 25 year olds who have real industry experience of 1.7 years and have already written 2 books.

    • @626Pilot
      @626Pilot 4 года назад +33

      Robert C. Martin has been programming for over 50 years, and he disagrees. He says go for 100% coverage. If you don't test implementation, you are going to miss bugs and design flaws.

    • @ishcatu
      @ishcatu 4 года назад +23

      @@626Pilot Robert C. Martin actually agrees with what is said in this talk. It can be read in his article about test contra-variance. Just google: cleancoder test contra-variance.

    • @redhotbits
      @redhotbits 4 года назад +20

      @@626Pilot uncle bob is full of shit

    • @nicogreco6926
      @nicogreco6926 4 года назад +71

      "He says go for 100% coverage..." Code Coverage is a hollow stat that many inexperienced developers put far to high emphasis on. You can still have various bugs with 100% code coverage, just because you covered all cases doesn't mean the cases are valid behavior.

    • @tamashumi7961
      @tamashumi7961 4 года назад +5

      @Peter Mortensen no test fails when a comment starts telling lies due to the underlying code changes.
      This is why better avoid comments. I appreciate there might be complexity in certain systems which is hard to grasp withouta comment though.

  • @ikeo8666
    @ikeo8666 3 года назад +210

    The problem comes from tools that do "CODE COVERAGE". Because of that metric, devs just end up testing their implementation so the chart that goes to the bosses and regulators is "oh look 99% code coverage of tests" when in practice it's doing absolutely nothing to improve the code.

    • @batesjernigan1773
      @batesjernigan1773 2 года назад +12

      I get the knee jerk reaction but IMO it can tell you a lot if it's below 80%. I think there should be a minimum but chasing 100% coverage isn't something worth having for the reason you mentioned.

    • @robertwhite3503
      @robertwhite3503 2 года назад +5

      Yes, I think test coverage tools mat have led me astray. I don't use them but it implies that all methods should be tested. Also the test first methodology makes me think of testing methods because I think in terms of writing methods. However I am going to try writing tests based on the expected behaviour. Generally everything I write starts with a web page and ends in a database update. Mostly of this boils down to the public services which are often not complex so may end up testing methods anyway. Where I have private methods this is arguably the tricky stuff that needs testing but may-be not.

    • @fennecbesixdouze1794
      @fennecbesixdouze1794 2 года назад +22

      No, that's not where the problem comes from. There's a fairly big name in extreme programming who does hundreds of talks that everyone watches and listens to who repeatedly ad-nauseam says you must write a test before writing each single new line of code. He even says you cannot call yourself a professional if you don't do that. The problem is that we have people like that, leaders and speakers in our field, who are talking out of their ass.

    • @Arthur-cd8yq
      @Arthur-cd8yq 2 года назад +12

      As far as I understand in here, 100% code coverage is exactly what Ian Cooper is trying to achieve. The main point of dissension is that his 100% is behaviour testing (but if all your app does is exactly what the behaviours expect it to do, that's 100% of code covered), and actually any line of code happens after having written tests. It basically tells you "don't test implementations, but test every. single. requirement", which is to say, 100% code coverage

    • @EdouardTavinor
      @EdouardTavinor 2 года назад +7

      i once had the idea of generating a file with a million lines in which each line just adds 1 to a number. at the end i write an unit test: assert(myFunction(), 1000000). And instantly our code coverage goes up 30%!

  • @ruixue6955
    @ruixue6955 3 года назад +54

    21:00 where did it go wrong in TDD
    22:30 recommended book
    23:53 24:01 *do not test implementation details, test behaviors*
    24:15 in *classic modern TDD cycle* , I will write a test before add that method, and that test will govern will that method succeeds or fails 24:30 *the trigger to writing a test in TDD practice is essentially adding a method to a class, THAT IS THE WRONG THING!*
    24:50 *THE TRIGGER in TDD for creating a new test is that you have requirement, you want to implement*
    26:03 testing the public API
    26:13 what is the contract your software has with the world 26:28 (API) will not change rapidly 26:36 *how you implement that requirement (contract, API) is unstable*
    26:44 what your software offers to consumers is the *stable contract, that is what you should test*
    26:54 not HTTP API
    28:46 SUT (system under test) is not a class

  • @lucasterable
    @lucasterable 2 года назад +22

    35:15 "the unit in isolation is the test". This is HUGE! Need a quote from Beck's book.

  • @gareth9012
    @gareth9012 2 года назад +72

    15 years ago in my one of my first contract programming jobs (I was a late starter), Ian took me onto his team, assigned me a more experienced programmer as a mentor and told me to read Kent Beck's TDD book. It completely changed the way I approached programming. I'm immensely grateful of the time he took to teach me. Great guy.

  • @colin7406
    @colin7406 3 года назад +90

    You know this is a good video when you look at the like to dislike ratio with the maddening creaking going on through out the presentation

    • @MaZeeT
      @MaZeeT 2 года назад +16

      Didn't aged to well :(

    • @Oktokolo
      @Oktokolo 2 года назад +2

      The creaking likely comes from something rubbing at the mic or its cable whenever he moves. Testing the recording setup before going on air still is extremely underrated...

    • @basileagle314
      @basileagle314 Год назад +8

      @@Oktokolo maybe the conference should have followed TDD principles

    • @Oktokolo
      @Oktokolo Год назад +2

      @@basileagle314 I wonder, what TDD would look like outside development...

    • @basileagle314
      @basileagle314 Год назад +3

      @@Oktokolo before you start using the microphone you talk normally in a large room to make sure they can't hear you at the back

  • @common_collective
    @common_collective 5 лет назад +133

    I never understood the benefits of TDD until I watched this talk. This is gold. Ian Cooper seems to be about the only person making sense on this subject

    • @SallyWaters24
      @SallyWaters24 5 лет назад +8

      I'd add to the short list: Kent Dodds.

    • @cryp0g00n4
      @cryp0g00n4 3 года назад +1

      Yea he definitely seems like he has a real understanding from his experiences as a software engineer and did what the book he described did for him - which was condense his years of experience in succint medium.

    • @developer_hatch
      @developer_hatch 2 года назад

      This comment is duplicated... odd.

    • @0netom
      @0netom Год назад +1

      IIRC, David Chelimsky's RSpec book made me understand benefits of TDD and trick of writing tests first. Then Uncle Bob's Clean Code series deepened my understanding. Now, 15 years later, I still struggle with using it, because when you work in teams, your colleagues are not disciplined enough to follow such practices closely and once they made a mess, it's really hard to stay on course... :( But it worth the effort!

    • @encapsulatio
      @encapsulatio Год назад

      @@0netom How is using TDD helpful if you already can just evaluate every function in Clojure?

  • @MrFedX
    @MrFedX 5 лет назад +33

    I’ve had a hard time getting inte TDD and now I realize why. Great talk giving the philosophy and practice of TDD. I’ll read Kent Becks book right away and start testing behaviour. :)

  • @vekzdran
    @vekzdran 4 года назад +3

    Amazing lecture. Appreciate the hard-experience led talk and that is what gives it immense value, not the TDD/BDD but the higher understanding WHAT should be tested, i.e. the user behaviour. Fantastic, thank you.

  • @gamemusicmeltingpot2192
    @gamemusicmeltingpot2192 3 года назад +32

    this talk is twice as effective after I have used TDD myself, helped me identify mistakes or incorrect ways of thinking a lot

  • @syrus3k
    @syrus3k 5 лет назад +82

    This is absolute gold and an eye opener.. thanks, thanks a million, thanks without end.

    • @davemasters
      @davemasters 4 года назад +4

      lol @ the stick man reference

  • @ismailm123
    @ismailm123 6 лет назад +5

    Watched the original version of this talk a few years ago. This updated version is even better.

    • @ismailm123
      @ismailm123 3 года назад

      @Peter Mortensen there you go 😉

  • @pavel_espinal
    @pavel_espinal Год назад +15

    I must confess that I've been mostly reluctant to the idea of TDD until just now. This is how TDD should have been "sold" or introduced from the beginning.
    Many people make TDD sound like if you have to know how the implementation of your methods is going to look like even before writing your first line of code.
    Outstanding talk.

  • @Endomorphism
    @Endomorphism 4 года назад +5

    Its always goes straight in the box of understanding when someone talk about actual philosophy of subject.
    He is talking with experience. Real Gold!!!
    THANX :-)

  • @paulhammond8583
    @paulhammond8583 2 года назад +7

    The best tech talk I've ever watched. Had a huge impact on my career.

  • @geshtu1760
    @geshtu1760 4 года назад +42

    I clearly hold a minority opinion, but it still seems to me that TDD (and all ideologies like it) comes from a magical place where business/user requirements are clear and determined in advance and never change, and developers somehow not only know in advance how they will develop a thing and what challenges they will face, they also somehow know the best way to do it, such that their design / API will not change. After coding for over 20 years and working many years in automated test, I have yet to meet such a developer. Coding involves exploration. You can't test for what you haven't yet discovered, and only a fool pretends there is nothing to discover.
    My disagreement with TDD is not because I think it is slower. It is because I just don't think developers (or anyone for that matter) are good at predicting the future. I suspect what ends up happening is that tests get updated after the software is done, which is fine but it's not what we're being sold.
    I have not written (m)any pieces of software where I knew the correct design or even how it would eventually work, before I started. I have a rough idea, but you can't write tests for a rough idea and expect nothing to change. Invariably the process of writing software involves some measure of exploration of the problem space and some iteration over various interfaces and designs, before eventually the API or UI or design begins to take shape and stabilise. Often the first attempt is not the best one, and yet you need to make that first attempt in order to better understand the problem space, and by then you will have gained the knowledge required to implement a more robust solution. Sometimes this process repeats several times. This solution may well (and indeed often does) change the contract with its would-be consumers (but that's ok because they haven't been finalised yet either). It seems to me that if you write the tests first, your lack of knowledge/foresight of the final product will be reflected in the tests, and they will then constrain the implementation unnecessarily, as you inevitably implement the code to conform to the tests rather than to solve the problem you originally intended to.
    Is it really so bad to write software, or even just a component, and THEN write the tests now that you better understand how all the pieces fit together? You write the code, and iterate until the design feels right. The interface is also perfected here. Then having understood the thing to be tested, you (or better, someone else who understands the thing to be tested, or better still, both) write the tests that are designed to (a) validate the contract between software and consumer and (b) try to break that contract. Apologies for long rant but I assume someone will correct me and I will learn something new.

    • @raulvazquez3511
      @raulvazquez3511 4 года назад

      > comes from a magical place where business/user requirements are clear and determined in advance and never change
      It takes several iterations to get the requirements right, and on each iteration, they will change. Looking at the latter part of your comment, I think you agree on this.
      > Coding involves exploration
      That's the key, where TDD helps is on exploring the unit (as a use case, not a class) instead of the entire system.
      > You write the code, and iterate until the design feels right. [...] having understood the thing to be tested, you (or better, someone else who understands the thing to be tested, or better still, both) write the tests that are designed to (a) validate the contract between software and consumer and (b) try to break that contract.
      Yeah, that's it. The difference with test-first TDD is and the iteration is done. Instead of favoring the iterations on design, it favors the iterations on getting the requirements right.
      Around 40:20 Ian goes deeper into the Red Green Refactor cycle. First, the requirements (with tests) are a bare definition, something that doesn't work (red), some code is written and to make the test work, at this point the code is DIRTY and SINFUL, there IS NOT good design, but this initial design and this initial definition can provide feedback quickly, it can be validated and with more details come a better understanding (even validate them with someone else as you said), a few iterations might be needed to get to an acceptable behavior (green) the important thing is to not forget the exploration, to no forget the discoveries, the new details of the requirements, and the way TDD does it, is writing them in the test, once there, the design can be improved (refactor), so the design can be changed without changing the requirements (already validated by tests at this point).
      With this approach, the requirements details (and their validation, with test) come before the design. The logic behind it, is: What's more important? The system behavior fulfilling the requirements or the design behind it?
      In TDD, a change in a test should come from a change in the requirements (the contract), a change in the design (refactor) should not affect the test, in practice, this is hard to get, but knowing it, changes at what level the tests are written and lowers the coupling.

    • @PetrGladkikh
      @PetrGladkikh 3 года назад +4

      @@raulvazquez3511 good design fullfills requirements, there's no contradiction. And it is not optional, while unit tests restrict how you can (or willing to) change your system. I still fail to see why should I bang my head against every wall in the room (tests red), make random turns (bad implementation), and only then walk our of room suddenly realising where door is (gainining understanding). I prefer to look around, to see where the door is. Then write a test to cover that - the test would be a lot simpler then. Still no answer why I should write tests BEFORE the code. Also I think TDD is a misnomer. It is actually a Unit Test Driven Development, by the way.

    • @PetrGladkikh
      @PetrGladkikh 3 года назад +5

      @@raulvazquez3511 Also I have question about word "quickly". Why? I think here is the core of disagreement, I think that people who like TDD - are the ones who _feel_ productive doing it. You create problems, you solve problems, all that brownian motion. While if you sit there thinking you are not typing anything - that arguably may not feel like a productive activity. But it is the result that matters.

    • @raulvazquez3511
      @raulvazquez3511 3 года назад

      @@PetrGladkikh the result is what matters, of course. Some people feel safer doing small steps and constantly verifying they are on the right path.

    • @DotSimLtd
      @DotSimLtd 3 года назад +6

      Can I buy you a beer? I can't agree enough. If you do TDD for most projects you will spend your entire time and budget before you have even delivered a prototype to a very unhappy customer.

  • @wealcome_company
    @wealcome_company 6 лет назад +37

    The best talk about TDD ever, thanks!

  • @TokyoXtreme
    @TokyoXtreme 5 лет назад +313

    Creaking intensifies.

    • @dthompsonza
      @dthompsonza 4 года назад +19

      sniffs :P

    • @portlyoldman
      @portlyoldman 4 года назад +18

      Nearly drove me mad...

    • @JSmith73
      @JSmith73 3 года назад +2

      NVIDIA RTX Voice ftw.

    • @ikeo8666
      @ikeo8666 3 года назад +13

      why did I read this comment? the whole video is ruined now

    • @narthur157
      @narthur157 3 года назад +3

      I had to stop

  • @dmytroromantsov9847
    @dmytroromantsov9847 3 года назад

    This video gave me a few really important insights into the development process. Thanks!

  • @jhaand
    @jhaand Год назад

    Great talk. It mostly reflects the philosophy we used at the project I was working on in 2017.

  • @gpk6458
    @gpk6458 3 года назад +12

    This is the most important thing I've seen this year. Wish I'd seen it earlier.

    • @this-is-bioman
      @this-is-bioman Месяц назад

      It's been a while since your comment. How is your code doing today? Still into TDD or alredy cured? 😅

  • @mykytafastovets8333
    @mykytafastovets8333 4 года назад

    Incredibly useful, especially when thinking through how to implement TDD correctly after starting lean, but your product starts reaching enterprise level

  • @pepijnkrijnsen4
    @pepijnkrijnsen4 Год назад +1

    I'm about halfway through TDD by example and listening to this talk again for probably the fifth time. TDD is extremely straightforward and incredibly deep at the same time. I'm still working on fully incorporating it in practice but it's SO much fun.

    • @lepidoptera9337
      @lepidoptera9337 Год назад

      Why are you telling us that you like to torture yourself? ;-)

  • @ShirazEsat
    @ShirazEsat Год назад +1

    Where did we go wrong? When we started making "units" small. Excellent presentation, with a lot to learn from it.

  • @juliakirshina4244
    @juliakirshina4244 2 года назад +6

    this is the best TDD talk I have ever seen !!!!

  • @mar.m.5236
    @mar.m.5236 4 года назад

    That talk fixes all my problems I had with TDD... Have to read the originals... TY

  • @fazlizekiqi2324
    @fazlizekiqi2324 4 года назад +4

    Great lecture! Explanation about the "duck tape programmer" was funny!

  • @larserikaa
    @larserikaa Год назад

    One of my favorite TDD talks ever! Thanks!

  • @rv4tyler
    @rv4tyler Год назад +5

    'Think about your code as an api' was my biggest take away from using TDD process. That was my biggest pivot in the way I wrote code.

  • @dimpukumar4678
    @dimpukumar4678 4 года назад +1

    Very informative. Thanks for posting!!

  • @manfredbergmann6160
    @manfredbergmann6160 5 лет назад +2

    Awesome talk.
    Ian brings it to the point.

  • @maik8338
    @maik8338 Год назад +2

    I want to say, that this is one of the most helpful speeches on TDD or software development in general I have ever heard. Just one tiny thing...the background noice, I think it's the floor, drives me crazy.

  • @johannesprinz
    @johannesprinz 5 лет назад +4

    Awesome talk! Bit of a mic drop at 1:02 DI Containers being evil, should use factories instead?!?! Love to hear more on this!

  • @neozoan
    @neozoan Год назад +1

    I particularly appreciated the bit about using unit tests to aid in building implementation details and then deleting them. I've got quite a few of those to hunt down and it makes sense, as these are often superseded by higher level tests that focus on the public interface.

    • @lepidoptera9337
      @lepidoptera9337 Год назад

      If your public interface test is not performed by wetware, then you are doing it wrong.

  • @DodaGarcia
    @DodaGarcia 2 года назад +1

    I was apprehensive about the length of the video but once I read “ports and adapters” two minutes into it I knew I had made the right call

  • @ruixue6955
    @ruixue6955 3 года назад +18

    30:43 *don't write tests to cover implementation details (because those change)*
    30:53 *write tests only against stable contract of the API*
    31:02 *Refactoring* is the key step, which enables u to *achieve the goal of separating between things like implementation details u don't need to test and the things you do need to test*

  • @BlazingMagpie
    @BlazingMagpie 3 года назад +55

    I was stuck for months on this question about TDD: "How are you supposed to write the tests for the methods before you know how the structure will look like?". This answers it completely.

    • @Whyoakdbi
      @Whyoakdbi 3 года назад +4

      hahahah same man! I was like - Am I supposed to be some sort of genius to figure out in my head all the functions I need to write and before I write them, write tests for all of them, and often those functions change because I refactor the code because the initial implementation was not optimal enough..

    • @oscarmvl
      @oscarmvl 3 года назад +1

      And what’s the answer?

    • @BlazingMagpie
      @BlazingMagpie 3 года назад +10

      @@oscarmvl You don't write tests at small scale: you write test for program's end goal, not tests for implementation details. That way you can refactor internal details without having to also rewrite all of the tests and still be able to find when program starts to fail.

    • @oscarmvl
      @oscarmvl 3 года назад

      @@BlazingMagpie makes a lot of sense, thanks for the quick reply!

    • @Whyoakdbi
      @Whyoakdbi 3 года назад +1

      @@BlazingMagpie actually that's a bad idea. You can never test all possible scenarios like that

  • @trinhngo2204
    @trinhngo2204 Год назад

    Nice speech, thank you
    An interesting viewpoint on TDD and i totally agree about how it slows down whole development process (by wrong testing implementation)

  • @PieJee1
    @PieJee1 2 года назад +1

    Good talk and i had the same experience with too much tdd. But i still make unit tests for classes that are low level or has no framework dependencies for example all value objects. I think you need balance even though it is less clear for junior developers when to write a unit test and when to write an integration test

  • @EduardsSizovs
    @EduardsSizovs 2 года назад

    Probably one of the best videos on TDD.

  • @rursus8354
    @rursus8354 6 месяцев назад

    Wow! I formulated my own scratch hacking method (for script writing) and tought it to my pupils, and Phase 1 and 2 sounds very similar to the Q'n'D phase of and the refactor phase of TDD. Thank you! That was interesting indeed..

  • @sumantkanala
    @sumantkanala 6 лет назад +7

    Oh boy, the part where he describes "programmer anarchy" build fast, fail fast, ship small really resonates with what I had been doing!

  • @mikerollin4073
    @mikerollin4073 3 года назад +1

    Thanks for sharing this talk

  • @johnnyw525
    @johnnyw525 Год назад +10

    Short version: If your tests will be broken by refactoring, you've written bad tests (generally speaking -- there's probably couple of unavoidable exceptions).

    • @this-is-bioman
      @this-is-bioman Месяц назад

      Every refactoring is an exception lol it's natural that tests break if you move functions around or create new classes or functions. Otherwise it wouldn't be refactoring 😂

  • @alejandroagua5813
    @alejandroagua5813 4 года назад +4

    The best way is to be flexible. Like everything in life, there are tradeoffs. There's a tradeoff between the time it takes to ship your code and make your boss happy and to do TDD. You should know when it's good to apply TDD and when it's good to selectively tests only behaviors and high-level codes. Most of the time you want to strike the right balance between time to market and the time you spend on the TDD routine. But when being duct tape programmer is needed, high level over implementation detail, behavior over implementation, functionality over structure, public API over internal classes, write features or refactor over idly watching reds and greens.

  • @orange-vlcybpd2
    @orange-vlcybpd2 5 лет назад +55

    23:59 - "dont test implementation, test behaviour"
    34:46 - "the test becomes the first consumer of your code"

    • @ashrasmun1
      @ashrasmun1 5 лет назад +1

      Can you elaborate?

    • @626Pilot
      @626Pilot 5 лет назад +10

      @@ashrasmun1 I can elaborate! This video is full of terrible advice, and the best reason to watch it is to find out what not to do. If you "only test behavior" you can have a huge pile of shit in your code, which just happens to pass your "behavioral only" tests. That pile of shit will slow you down as soon as you have some new use case that your original "behavioral test" didn't account for, because your code will tend to lean into your "behavioral only" tests. Whatever they let your code get away with is "okay" because the test says so, right?
      This, of course, _is the whole point._ We _incorrectly_ think it's onerous to test 100% of our code, every line, so we try to get away with less than that. (If any at all.)
      Undisciplined coders will flatly refuse (or strenuously object, under management pressure) to write tests, no matter what anyone says. Consummate professionals who care about what happens as a result of their work will, among other things, test 100% - every line. What this video presents is ~70-80% of the way there. (I mean this literally; you will hit about 70-80% code coverage with what he suggests.)
      The last 20-30% of code that isn't tested is where much of the shit is going to hide. Some of the shit may be in your tested methods; but if you bring those un-tested methods under the control of tests, you will soon find it necessary to refactor and get rid of the shit.
      I used to do this "integration only" testing myself. It was far better than nothing, but it still left much to be desired. I kept having to go back and fix shit in the untested code, over, and over, and over again. I kept finding bad designs hiding in that untested code, and lax behavior that enabled bad designs to persist in tested methods.
      Finally, I got sick of it, and decided to try 100% coverage, just for a month, to see if I liked it. Everything got WAY better. It's so much easier to refactor when everything is tested, and so much harder to get away with a shitty design as well. If I have to go back and fix or extend this 100%-tested code, it's _easy._ Easier, by a wide margin, than that kind of work has ever been before, and I have been doing this for _decades._

    • @BlackLinerer
      @BlackLinerer 5 лет назад +27

      @@626Pilot I do not agree. If you do TDD, then you can delete every line of code that is not covered by the test, because it can't be needed. --> 100%

    • @626Pilot
      @626Pilot 5 лет назад +1

      @@BlackLinerer If you do TDD, you hit 100% coverage, so what isn't covered by the test is the lines you throw away. Any line that is important enough to put into production is important enough to cover.

    • @zzzfortezzz
      @zzzfortezzz 5 лет назад +15

      ​@626Pilot : I'm no expert here, but I wonder. If you do 100% coverage, then when you change the way you implement the behavior, just small change, it doesn't impact the behavior, but it does break tests, I think it's unnecessary.
      Since you said it was just 1 month that you tried, I think it's still kind of too soon to tell. However, here's another clip that talk about the bad parts of TDD, the speaker's team was obsessed with code coverage, and it nearly killed their project:
      ruclips.net/video/xPL84vvLwXA/видео.html
      And another article having a little part discussing about code coverage:
      medium.com/javascript-scene/mocking-is-a-code-smell-944a70c90a6a
      ```
      In my experience, increasing coverage beyond ~90% seems to have little continued correlation with lower bug density.
      Why would that be? Doesn’t 100% tested code mean that we know with 100% certainty that the code does what it was designed to do?
      It turns out, it’s not that simple.
      What most people don’t realize is that there are two kinds of coverage:
      - Code coverage: how much of the code is exercised, and
      - Case coverage: how many of the use-cases are covered by the test suites
      [...]
      100% code coverage does not guarantee 100% case coverage.
      Developers targeting 100% code coverage are chasing the wrong metric.
      ```
      As I said, I'm no expert, still in progress of practicing TDD. However, I'll go with the more experienced experts since their explanations are more reasonable.

  • @shutupandshave1926
    @shutupandshave1926 2 года назад +3

    This presenta....CREAK...tion is absolutely ...SQUEAK... fantastic.

  • @qeithwreid7745
    @qeithwreid7745 3 года назад +1

    Great. Really clear. Thank you.

  • @70ME3E
    @70ME3E 4 года назад +6

    this is gold. THIS is how testing makes sense.

    • @this-is-bioman
      @this-is-bioman Месяц назад

      Have you applied anything from this presentation that has changed your code? It's been a while since your comment.

  • @kcsongtv4184
    @kcsongtv4184 4 года назад +1

    great talk and well educative.thanks alot for this wonderful video

  • @youtux2
    @youtux2 Год назад +4

    24:50 The trigger in TDD for creating a new test is that you have a requirement you want to implement.

  • @EnricoGalassi
    @EnricoGalassi 5 лет назад +2

    Amazing talk!

  • @qasimazhar773
    @qasimazhar773 2 года назад

    An awesome talk. Big thank you.

  • @jasperschellingerhout
    @jasperschellingerhout 3 года назад +1

    I believe it was UCSD Pascal that introduced the concept of unit (which I also believe was an inside the joke - Pascal is also a unit of pressure). A unit in Pascal was similar to the combination of the interface and implementation files separated as .h(pp) and .c(pp) files in C\C++. When referencing a unit you only had access to the interface section. It was essentially the "exports", the "interface", or the "header" section. You had no access to internals. The analogy with exports from Modules in Node.JS works very well, its pretty much a 1-1

  • @olleharstedt3750
    @olleharstedt3750 2 года назад +19

    Imagine if this guy actually had presented some numbers. Bugs per developer, bugs per change request, cost of TDD before and after his approach... We need empiricism.

    • @derhintze
      @derhintze Год назад

      Yeah, I think anyone likes to replace feelings with evidence. But that's really hard to achieve. Did you have a look in "Software Creativity" by Robert L. Glass? That one's a nice, balanced book on this topic.

    • @this-is-bioman
      @this-is-bioman Месяц назад

      You mean numbers that are going to be manipulated, faked and staged for the sake of getting them as soon as they are tracked?

  • @jmrah
    @jmrah 5 лет назад +15

    It's too bad he was running out of time at 57:00. I would have loved to hear more elaboration on the testing that should be done with the adapters in the Ports and Adapters model. Sure, I can test my application through my ports, but how do I know that my adapters and ports communicate correctly? How do I know, for example, that my HTTP adapter returns a 404 when my core applications throws a UserNotFoundException? Surely, I don't duplicate all my ports tests, but calling them through the adapter interface. It would have been nice to hear a little more about that part.

  • @RonnyBubke
    @RonnyBubke 4 года назад

    Great Talk. Use it to convince people to do it right.

  • @stevecarter8810
    @stevecarter8810 5 лет назад +11

    35:11 I've spent nearly a decade thinking I was the only one who spotted that

    • @williamlong4112
      @williamlong4112 3 года назад +1

      35:11 I've spent nearly a decade thinking I was the only one who spotted that

  • @researchandbuild1751
    @researchandbuild1751 4 года назад

    43:48 huh great point. I always get stuck on the analysis paralysis portion these days. I think i need to get Kents book

  • @mpldr_
    @mpldr_ 2 года назад +18

    "Have programmers speak to customers"
    With most programmers I've met so far, this would be a great way of either getting rid of your customers or getting your programmers really annoyed.

    • @peterbaan9671
      @peterbaan9671 2 года назад +1

      Yeah, you need an SME of sorts who speaks customer and speaks engineer at the same time.

    • @thibauthanson7670
      @thibauthanson7670 2 года назад +3

      Sure, let's pile on with the stereotype, good job.

    • @peterbaan9671
      @peterbaan9671 2 года назад +6

      ​@@thibauthanson7670 - Stereotpes exist for a reason.
      Programmers are usually not "peoples people", nor salesmen, nor managers.
      There are some scenarios where it can be beneficial to have the programmer join the meeting with the customer, but it is rarely a good idea.
      You see, customer relations is a 100% different cattle of fish compaired to programming. You need to know what can and what can't be said in front of the customer, you have to be extremely polite all the time, you have to agree to their scope while changing that scope, etc.
      Having the programmer speak to the customer is a bad idea for the same reasons as having a physician as the Minister of Health. It sounds good, but the position won't utilize the very skills that makes somebody a doctor. Some time it works, but not because the human in question is a good doctor, but because he is good at politics.

    • @jonharson
      @jonharson Год назад +1

      Customers who reach engineering will be sacrificed to a Canaanite god, these are the rules of the game

  • @cryp0g00n4
    @cryp0g00n4 3 года назад +1

    Fantastic talk!

  • @fooked1
    @fooked1 5 лет назад +1

    This is really helpful advice

  • @suchoss4770
    @suchoss4770 5 лет назад +3

    Well there were a lot of Bobs in our department ten years ago. Today all department is loked in maintenance...

  • @amitev
    @amitev 6 лет назад +23

    A lot of wisdom in one hour

  • @aiukar
    @aiukar 3 года назад

    This is one of the most inspiring talks I've ever seen. It connects lot of pieces that for many of us are not effectively connected, which leads to very bad development practices. I've shared it to my colleages several times so far and I will certainly keep sharing/reviewing it in the future. Thank you very much!

  • @ghevisartor6005
    @ghevisartor6005 7 месяцев назад

    What a find tests a lot useful for is when i need to check how a small piece of code works without running the entire app and navigating to that page, i know there is c# interactive but many times it's quicker this way. You write the code in the test and debug it, easy done.

  • @jerrychen2663
    @jerrychen2663 2 года назад +17

    Since the video suggests that we should write unit tests for modules, not classes. Hence, before starting TDD, the first thing we need to do is to divide the system into modules well.

    • @OnlyForF1
      @OnlyForF1 Месяц назад +1

      You don’t though! All you need to start test driven development is a single behaviour you’d like to verify functions as expected

  • @manawa3832
    @manawa3832 5 лет назад +17

    If your tests are brittle, that means your program is brittle. Trust me, this is a common pitfall. For example, I have a TimeWatcher object with a bunch of tests. The TimeWatcher uses Utc to compare timestamps and does some stuff. My tests reflect this. Later I decide, oh no, I need to use my Local Time. You make the change, and your tests break. This is proof that your program is brittle. What you should have done was construct the TimeWatcher with an object that abstracts away dealing with variations of time. That way, you simply add a new LocalTime object, test it with new tests, and inject it into TimeWatcher. None of your tests break. Your code needs to be open for extension, but closed for modification. If it's not, your tests will let you know.

    • @xybersurfer
      @xybersurfer Год назад

      but then you would have to anticipate, that you might later want to use Local Time instead of UTC?

  • @benjaminpapin4312
    @benjaminpapin4312 2 года назад

    simply the video that could make the word a better place if everyone was spending an hour of their time watching it.

  • @nikosc
    @nikosc 5 лет назад

    Very nice talk

  • @BorysMadrawski
    @BorysMadrawski 3 года назад +1

    It was about BDD and about how to not overkill ourselves with enforced TDD approach to have 100% coverage for every line of code in just a business code.
    Of course there is still a space for TDD if you develop/maintain a very technical code with a stable interface, like a framework (f.e. Spring), or some algorithms, when you really need to test every method and almost every possible combination of interactions and data.

  • @gregbell2117
    @gregbell2117 5 лет назад +10

    I wish our industry could get its story right. My understanding of the point of TDD was that it was supposed to show you when your design needed re-working. Tough/weird to test? Refactor. The test drives development.

    • @user-ph4zo2sr5v
      @user-ph4zo2sr5v 5 лет назад +4

      It is far more subtle than that, though when you start asking *when* to test. Before each feature? Each method/function? Each line? Do you test after a feature, or method, or line? There are trade-offs everywhere. I am far more productive if I can experiment with implementation without ANY tests and then write tests to cover the *behaviour* afterwards. There is no right way... but testing absolutely should be considered an integral part of development. Guesswork otherwise.

    • @gregbell2117
      @gregbell2117 5 лет назад

      I don't see how test-last is beneficial there. With a failing test written first, you're free to experiment with implementation, always knowing that it still works. That's unless you've written a test at too low of a level, so that it's sensitive to changes to your implementation.

    • @user-ph4zo2sr5v
      @user-ph4zo2sr5v 5 лет назад +2

      It's too subtle and specific to the exact work you're doing to prescribe a "test-first" or "test-after" across the board. For example, when experimenting with frontend implementations it often isn't viable to have a high level test which will not be sensitive to the implementation - what do you hook into? words on the screen or element classes or types.. what if they change (usually do during that early phase)? I'm not going to write tests, regardless of how high level they are, which hook into an experimental HTML structure which is under constant change. It would slow me down far too much as I'd have to keep updating the tests. Again, this is highly dependent on what you are developing, as test-first absolutely does make sense in a lot of cases.

    • @gregbell2117
      @gregbell2117 5 лет назад +1

      Absolutely right. I think this subtlety is missing in a lot of TDD discussion. I really do not want to feel friction when I want to refactor just because a pile of tests are going to fail if I change one little thing. I use screengrab based regression testing sometimes (ie. the changes I'm making should not affect the output). Other times I'm testing business logic, so my "unit" is a feature (a BDD/TDD mix) and I'm looking for specific values in the DOM, not place in the DOM hierarchy or other specifics.

    • @626Pilot
      @626Pilot 4 года назад +4

      This video is not about TDD. It is about the half-measures developers resort to when they find TDD difficult to work with. It rewards code that's easy to test, and punishes code that's hard to test. The secret is that code that's hard to test is _bad,_ and needs to be refactored. This secret is not known to these developers. They confuse the steep learning curve for evidence that there is something wrong with TDD. They assume it will _always_ be hard. So they come up with any excuse to skip this test, skip that test, etc. And then they write a blog or give a speech about how clever they are to have done this.
      Thinking that real TDD is too hard or not worth it is a _symptom._ It _goes away_ the more you stick with it. Being rewarded for writing easily testable code, and punished for writing code that's hard to test, forces you to give up bad habits. The habits are bad because of the fundamental truth at the center of TDD:
      *Loose coupling and testability are the same thing.*

  • @pepijnkrijnsen4
    @pepijnkrijnsen4 3 года назад

    Fantastic talk

  • @eimaisklhros
    @eimaisklhros 3 года назад +1

    So, if I need to get some specific object(or a list) from the db based on something (ex name, address etc) is it wrong to mock my repository in order to test a certain behavior of what this class does?
    I have an ETL process where I need to test that my processor(module where the business is focused, the T in ETL) passes a specific object to the writer(the L) based on a specific reader input(the E).
    What I do is test the processor(not its other 10 -20 private methods, those are implementation details) by inserting a certain object and I assert that the object after the process is the one I need.
    like
    input = new Foo(param1,param2)
    This is where I mock the repository based on my business case.
    every BarRepository returns "someFooStringBecauseOfFooParam1)
    result = myProcessor.process(input)
    assertTrue(result, Bar(someParamsBasedOnTestCase).
    of course I could use an in-memory db for that...I just find it easier to create objects based on scenarios I want to test..

  • @BukovTervicz
    @BukovTervicz 3 года назад +1

    This saved my life

  • @matthewclarke3989
    @matthewclarke3989 5 лет назад +12

    Great talk, this is going to change how I approach TDD. My only complaint is there's a irritating/distracting sound as he walks around on stage. If that could be edited out, that would be perfect...

    • @ABCo-ABMedia
      @ABCo-ABMedia 3 года назад

      It's the microphone rubbing against his glasses, not a whole lot can be done about it really

    • @harrievanderlubbe2856
      @harrievanderlubbe2856 2 года назад +1

      and the runny nose

  • @robertmuller1523
    @robertmuller1523 2 года назад +1

    The reason why developers tend to focus on testing methods, is that many organisations have established some kind of governance that uses code coverage or even method coverage as a central KPI. If you force developers to write at least one unit test for every single method that must achieve a code coverage of at least 75% of every single method, then you cannot complain when someone says "I have to write a unit test, because I have to add a new method".

  • @ApacheGamingUK
    @ApacheGamingUK 3 года назад +1

    My first introduction to TDD was through a talk by Uncle Bob. At least, that was the first time I properly understood what "Write the tests that fail" truly meant. I was horrified by it. But this makes the whole process much more appealing. Bob's talk effectively taught "Red-Green-Red-Green-Red-Green", and the whole concept of TDD seemed to suck any amount of passion out of programming for me. It turned a vocation into a chore. It personified the meme about programmers turning coffee into code. This outside-in (London School) approach is far better than Classicist (Chicago School). Although, both can be very useful. What Ian had to skip with shifting gears was that, when you do know the answers to the problems, and you're just writing tests to conform to the standards, use London School, and build from the outside in. But, if you hit a wall, and find a problem that really doesn't make sense, then you can go Chicago School, and write classicist tests to develop the implementation step-by-step, shifting the focus from the API to the raw code. In C#, I'd start these in a new Assembly that can be unloaded later, to save the tests for posterity, while not interfering with the "production" test suite. It's always good to have a Sandbox assembly for scratchpad code.

  • @tocu9808
    @tocu9808 3 года назад +1

    Be conscious of right abstraction level. And the key is to identify, properly, your 'unit' under test.

  • @davidjulitz7446
    @davidjulitz7446 4 года назад +1

    Easy and clear.

  • @robertkelleher1850
    @robertkelleher1850 2 года назад +1

    Made it all the way to 41:42 and just realized why the slides are so confusing. All the slide headers are outside the frame and we can't see them.

  • @foobarz-coding
    @foobarz-coding 5 месяцев назад

    I was doing unit test for the last 2 weeks in my current job for the first time . I was mocking to dependecies of the class and also spying on the implemntation . I knew that I'm doing something wrong . Nice Lecture Now I understand how to go .
    what do you thing guy about mocking repositories with in Memory database for Unit test ?

  • @Joe333Smith
    @Joe333Smith Месяц назад

    He's absolutely right about not testing one class or function in isolation. You test a functionality. This was always super obvious to me. But he spelled out the reasons in a little bit more detail whereas I kind of just implicitly felt it.

  • @user-dt9xb7sn2q
    @user-dt9xb7sn2q Год назад +1

    This talk is describing the original TDD concept or so called "classicist" school. There's also the new school of TDD often called "mockist". Both are opposing each other. And this talk is somewhat cliticizing the mockist approach. To get a full picture I'd recommend everyone to learn both concepts and decide for themselves which of the two could better fit their field. What works for microservice architecture might not always work for a mobile app.
    What I don't understand from this talk and the classicist approach in general is the refactoring step, which seems completely optional to me. Why would you refactor after something is already working? Because of a smell? How would you know it's a smell? Because you've read smart books? (the majority does not read books).
    Also a higher (than a class or function) level tests are more brittle. They do enable safe refactoring without changing the tests, but on the other hand require changing multiple tests should the business requirements change.
    Likewise the mockist approach drives not only the implementation but also its design. One could say it's not TDD but DDD: Design Driven Development, as you have to come up with design before writing any unit test. Although you could write a higher level test if you like to, but I prefer writing it last to not have it hanging there red all the way through. And when the business requirement changes you often need to only change a test or two and write more for new units. You can also safely reuse your code, because even the smallest unit is tested.

  • @LarryRix
    @LarryRix Год назад

    3X more "test code" than "dev code" (and other problems). This is where Design by Contract (see Eiffel) shines. DbC is when your test code comes out of the test environment/harness/mock and becomes a part of the production code itself. Where the compiler is smart enough to exercise, report, and utilize your "contract assertions" (e.g. "test assertions") in everything except the production code. Even then-you can include some, part, or all of your "contract" code in various "versions" of production code (if you choose). This means you only need enough "test" (TDD) code to spin-up objects and exercise them. Therefore-test code is smaller, mocks fewer, supporting data structures are smaller and the whole "3X more test code" scenario is greatly reduced in size, scope, complexity, time, and money impact on your project. You may further dice this up by creating many small libraries, where each library lives insulated with its own production product and test environment-such that-small changes to a library do not necessarily "leak" out all over your project code base.

  • @JulianSildenLanglo
    @JulianSildenLanglo Год назад

    16:00 This is why I want to be able to tell my test suites to allow tests to fail until they've passed once.
    Alternatively you can invert the tests by having unimplemented features go green as long as the test fails, then when it starts working you remove the "expect to not work" flag.

  • @tomasnadvornik2826
    @tomasnadvornik2826 Год назад +1

    My man's fought so hard to keep that snot in. Respect

  • @HELLOWORLD-ix9eg
    @HELLOWORLD-ix9eg 4 года назад +28

    Summary: Test the overall behavior (public API) not internal implementation details.

    • @JamesSmith-cm7sg
      @JamesSmith-cm7sg 4 года назад +1

      In a monolith web app that's browser testing only then?

    • @cluster027
      @cluster027 3 года назад +2

      Wish I saw this earlier. You'd have saved me an hour.

    • @dyyd0
      @dyyd0 3 года назад

      @@JamesSmith-cm7sg You may want to look at some Uncle Bob videos on this (ModelViewController). You do not want to include UI layer in testing web app if at all possible. As Ian pointed to in his talk as well in this video, UI can change without the underlying behavior changing.

    • @JamesSmith-cm7sg
      @JamesSmith-cm7sg 3 года назад

      @@dyyd0
      The UI should 100% be tested, but not unit testing, browser/end to end tests.

    • @gamemusicmeltingpot2192
      @gamemusicmeltingpot2192 3 года назад

      @@JamesSmith-cm7sg api does not mean the UI or http api, it means any part of your module that is used externally, i.e public methods but not the internal implementation
      this tests all the required behaviour and relevant code without breaking all the tests if the internal implementation is changed

  • @privateparty4900
    @privateparty4900 Год назад +2

    24:55 I want to watch this but I'm not sure I'm going to make it with the mic rubbing.

  • @shantanushekharsjunerft9783
    @shantanushekharsjunerft9783 3 года назад +5

    Basically automate the test that developers do manually anyways after implementation to verify correctness of the feature. That automated test is TDD.

    • @algimantas.stancelis
      @algimantas.stancelis Год назад +2

      No. TDD is when you write test before you implement the feature.

  • @BryonLape
    @BryonLape 5 лет назад +38

    It went wrong at the same point as everything else, when the professionals got ahold of it and wrote books on the subject, without ever actually doing it.

  • @tamilmaranc
    @tamilmaranc 3 года назад

    excellent ppt sir

  • @Austin9435
    @Austin9435 4 года назад +9

    Will the creaking ever stop! This is such a good talk and it is ruined by it.

  • @ScottKorin
    @ScottKorin 2 года назад +1

    Being able to talk to a db would get rid of all of the mocking I know that I end up doing in my tests.
    This is an interesting idea and one my team has been avoiding for years. So we mock our data access layer

    • @LuaanTi
      @LuaanTi Год назад

      The tricky thing is that this tends to effectively _hide_ the mocking code - that test database is _also_ part of the test suite, and needs to be understood, maintained, faked, reconstructed...
      There are some ways to avoid these, and you'll find they actually fit pretty well with attempts to code better (not just test better). Once the DAL is decoupled from the business logic, you no longer need to mock the DAL - it's completely external. If your business logic _calls_ the DAL, of course you need to mock it. It's not always easy, but I find it tends to result in code that's much easier to understand and predict. It also means your tests can focus on exactly what Ian and Kent are talking about - making sure the high-lever requirements are satisfied. When product A has tax B and discount C, the result should be D. It should be completely irrelevant to the business logic how the data gets there - that's not the responsibility of the business logic! But it's also very easy to intertwine the logic and the DAL; easy to convince yourself it's necessary even.
      Of course, ultimately the main problem is that software is hard to write and maintain, and very complex. Too many people expect there to be a simple fix - simplicity is the key, yes... but that doesn't mean doing the simple thing is also easy :D It's much the same with writing anything else - it's hard to make thing that is terse and easy to understand; anyone can write a wall of text. Anyone can use superfluous flowery language.
      A good writer could write this comment in two sentences :D Which funnily enough seems to me appropriately similar - if you use automated tools to help you, and abuse them - you can always write exactly all the words I wrote as two sentences, and feel smug how you "beat the system" (or worse "achieved the goal"), just like you can chase magical 100% coverage numbers, line number counts (or lengths), split a class into four (completely interdependent) classes and pat yourself on the back on how you "lowered the dependencies" even though you did no such thing. The tools aren't good enough to catch you cheating, and often guide you in the entirely wrong direction. I especially have a peeve with dependency analysers and DRY analysers - they don't understand what they're analysing, and it just doesn't work without understanding. Just because two pieces of code share the same text values _doesn't mean they're repetitions_ . The key thing always is "when something changes, do _both_ of these have to change?" Does the code cover the same requirement, or do they cover two separate requirements that just _happen_ to be similar right now?

    • @GabrielGasp
      @GabrielGasp Год назад

      @@LuaanTi I believe that’s exactly where Ports and Adapters come in, if your business logic only expects to receive an adapter (concrete implementation) that satisfies a port (an abstraction like an interface) to communicate with the outside world (database, rest apis, etc) you can easily create a simple mock adapter that "fits" in that port and run your tests with it.

  • @XeonProductions
    @XeonProductions 3 месяца назад +1

    Maybe the reason I hate TDD so much is that I've always been on projects that are rapidly changing with poorly defined requirements. I very seldom encounter a project where I have good enough requirements to write tests BEFORE writing the code. I've also worked on projects where the leads are obsessed with code coverage and code smells, even though the code was still a bug ridden mess. I've spent more time writing tests, refactoring tests, debugging tests, and researching how to write tests than I ever did writing any of the code. The time and cost savings just wasn't there, and still isn't there. In my experience my untested code has been no more buggy than my tested code. You then have the massive bloat that comes along with making every single dependency in a class injectable (interface hell) so that it can be "easily testable", even though most of the dependencies you are injecting will NEVER need to have an alternative implementation during the lifetime of the code. You then have the problem of poorly written tests by inexperienced or low skilled developers, which will throw up false positives or falsely show that something is passing giving you a false sense of security.

  • @nomanziad3314
    @nomanziad3314 8 месяцев назад

    Nice Talk!

  • @ComradeOgilvy1984
    @ComradeOgilvy1984 8 месяцев назад +1

    16:16 What I have noticed is that BDD gives the illusion of better quality, while costing effort and not delivering more quality in a manner that matters. Yes, it sounds nice to wave a pretty test report in front of a Product Manager or Product Owner. Yes, it sounds nice to believe that PMs could be writing some of the tests. While this might generate enthusiasm in a few early meetings, the PM and PO will soon decide they have better things to do than worry about this stuff. Now you have additional code that is your BDD abstraction layer to maintain, for no actual value delivered.

  • @vanivari359
    @vanivari359 Год назад +2

    Amen. For like 10 years i have this fight again and again that this IDE-driven approach of testing (tests focussed on methods) and especially TDD is horrible and responsible for the lack of adoption. It's tedious because while my public interface is pretty much set from minute one, i rewrite my class and method structure behind it constantly until it stabilizes. But that definition of what a unit is, was completely ruined by the industry, by IDE test-class generators and also by most TDD tutorials, which usually are so simple, that it looks like the method is the unit. If some of those tutorials would have added just another class to the unit and spoke about this issue, we would not have this mess today.
    Also amen to the Gherkin-tool topic. I have not seen a single project in which the business actually cared (meaning read/write them) about those tests because most of them are not capable or interested to structure requirements precise enough even in natural language and most POs in large companies are just "managers managing external providers" anyways. So at the end, i still like to align automated acceptance tests with the customer, but i don't force my team to deal with stuff like Gherkin unless they really want to (as if that ever happens).
    BTW: not complaining about Gherkin, Cucumber etc. Its a great idea, it works very well, but it's extremely hard to get the value out of it because almost every tool that tries to pull the business deeper into the development (BPEL, BPMN, BRM etc.) fails because at the end a developer has to do the job anyways. I love BPMN frameworks, but there are like 10 business analysts on the planet able to change an executable BPMN process without breaking it.