🚀 Does TDD Really Lead to Good Design? (Sandro Mancuso)

  Рет қаралды 41,423

DevTernity Conference

DevTernity Conference

Күн бұрын

❗️ATTENTION ❗️
Registration to DevTernity is running:
👉 devternity.com
"TDD is a design tool." That’s what Sandro has said for years. But not anymore. After working with different teams and in different organisations, and also carefully inspecting how he works, Sandro changed his mind about the role of TDD in software design. In this talk Sandro will explain the pros and cons of the two main styles of TDD when it comes to software design, he'll discuss why some developers can test-drive well-crafted code while others can’t, and he'll also explain how to reason about design decisions.

Пікірлер: 66
@detaaditya6237
@detaaditya6237 3 жыл бұрын
Finally a clear image of how TDD is applied in real world problems. Thanks man, that was a great explanation!
@zHqqrdz
@zHqqrdz 4 жыл бұрын
I just want to add another commentary that this talk is absolutely golden. It teaches a LOT MORE than you'll find in pretty much any other TDD talk. Prove me wrong please, and link me another talk of the same caliber.
@kevinfleischer2049
@kevinfleischer2049 4 жыл бұрын
Check out "Improving your Test Driven Development in 45 minutes - Jakub Nabrdalik" . I found it good too. kzbin.info/www/bejne/aKeooH9pftean9k
@MohamedCherifBOUCHELAGHEMdz23
@MohamedCherifBOUCHELAGHEMdz23 4 жыл бұрын
@@kevinfleischer2049 Thank you, I'm curious to see how he used C4 model!
@wealcome_company
@wealcome_company 3 жыл бұрын
Check out this one : vimeo.com/68375232. best ever
@bluebottle4
@bluebottle4 3 жыл бұрын
I agree. I could have listened to this guy for much longer. But nice bait, asking for similar quality material ;)
@dardanbekteshi3177
@dardanbekteshi3177 2 жыл бұрын
kzbin.info/www/bejne/e4uTZphterKCgq8 here's another TDD talk of a very high caliber. Enjoy :)
@wedesoft
@wedesoft 2 жыл бұрын
Finally a talk with an answer to the question where to use mocks and how to choose your units.
@TheOceanLoader
@TheOceanLoader Жыл бұрын
This guy wrote a book called Software Craftsmanship. It's one of my favourite books. I remember working with him at Valtech many years ago.
@eduardocosta9078
@eduardocosta9078 5 жыл бұрын
Amazing talk in the classic old school style, a white board, a pen and the ideas bubbling up in the mind! Congrats.
@RmaxTwice
@RmaxTwice Жыл бұрын
What an unbelievable amount of raw concentrated developer experience directly distilled into our brains. Bravo
@RoamingAdhocrat
@RoamingAdhocrat Жыл бұрын
Just to say I really appreciate this camera setup - the fixed view showing the whiteboard clearly, and the second view of the presenter.
@edgeeffect
@edgeeffect 2 ай бұрын
It'd be better if they could improve the camera tracking. .... and the grading.... and maybe give it a miss when there's nothing to see on the whiteboard - it's quite "seasick" at that point.
@GunterZochbauer
@GunterZochbauer 3 ай бұрын
For me the biggest advantage is that wtiting tests pushes me into the view of the user (caller) of the code. This helps to get it right the first time.
@shashanksharma900
@shashanksharma900 Жыл бұрын
pointed out the exact point of Concern rather than beating the bush Felt very Clear and Empowered in the end Thanks Again Loved it
@nikitakoselev4179
@nikitakoselev4179 2 жыл бұрын
That is a mind blowing actually. One of the best talks I have seen in 2021.
@hartmannsson
@hartmannsson 2 жыл бұрын
Two more hours of this would’ve been great!
@rkgrachel
@rkgrachel 2 жыл бұрын
Three years ago, still GREAT talk! Thanks a lot.
@Chemaclass
@Chemaclass 2 жыл бұрын
This talk is a must-watch for all devs! Thank you!
@lzszl
@lzszl 2 жыл бұрын
Love the Talks, the music at the end needs the gain turned down, blew out my headphones
@youssefmourchid9149
@youssefmourchid9149 Жыл бұрын
thank you Sandro for demystifying this subject, it's a pragmatic way to practice TDD, brilliant
@abduljeelani4040
@abduljeelani4040 3 жыл бұрын
Refactor is not only for the code but for the test as you describe in 20.45, whenever this happens we isolate C separately and its behavior separately. To fill the space we just use test double instead of mocks. No matter we do test double with pure class or mocks, It is crucial to ensure the behavior of these are consistent and matches with the original class / function. I have seen multiple code bases where the mocks for the same behaviour are spread across in multiple places, and then it gets divergent from original class. In case of another test double we add one more test for the test-double to ensure that is always up to date. Another quality of code is changing the code without affecting the behavior should not fail the test. Mockists leads you to assert Called Once, called Twice etc. which becomes a barrier in refactoring. Lesson: Use Mocks more carefully, prefer classists, Refactor your tests as well, not only the code ..:)
@dimitriostsobanopoulos7
@dimitriostsobanopoulos7 3 жыл бұрын
Excellent talk! He practically explained what I've been using myself for the past 25 years when developing systems, always starting from a test, making the design decisions, and refactoring until requirements and domain constraints are met. My favorite part of this talk is when he briefly spoke about optimizing for the future and deciding what the inflection point should be at the current stage of the system evolution. Many times, this is a hard decision that needs to be based on a lot of business information items involving time constraints, product life-cycle expectations, future scalability and expandability, minimum initial functionality requirements, and so on, just to begin with. Many times it feels like trying to divine the future. I generally don't do the failing test part, but I do insist on strict adherence to enforcement of preconditions, postconditions, invariants, S.O.L.I.D, and this has led to very stable and scalable systems.
@cesar_zapata
@cesar_zapata 3 жыл бұрын
25 years. That's a long time. :D does it finally get easier after that long. Congratz man.
@dimitriostsobanopoulos7
@dimitriostsobanopoulos7 2 жыл бұрын
@@cesar_zapata When I asked this same question to one of my professors back at university, he smiled and said: "I am a student of computer science, and learning does not have a visible horizon". This answer left an impression on me.
@cesar_zapata
@cesar_zapata 2 жыл бұрын
@@dimitriostsobanopoulos7 that's brilliant. It totally makes sense.
@aalbero
@aalbero 9 ай бұрын
The second half of this video is simply brilliant
@nikosc
@nikosc 4 жыл бұрын
Superb talk...no words
@elyesbenfarhat859
@elyesbenfarhat859 4 жыл бұрын
fantastic talk!
@hasanhof
@hasanhof Жыл бұрын
Incredible, it's all raw experience that has been put into this talk. Hats off 👍👍👌👌
@shrikantvashishtha6623
@shrikantvashishtha6623 3 жыл бұрын
This talk is divine as it solves the problems which bugs almost everyone. Should you evolve design through TDD or you design first and complement it with TDD to evolve it further? Is evolutionary design sufficient or even possible without having any up front design? Sometimes when you are already deep dived in the code, it becomes difficult to look at holistic view. Moving bottom-up (TDD to design) is not that easy and always put a question mark in front of me. Things over here make a lot of sense. Thanks.
@doichanvang
@doichanvang 4 жыл бұрын
I've learned a lot from you Sandro
@daniloapicella4869
@daniloapicella4869 3 жыл бұрын
Nice talk, a whiteboard and a pen seem to be even better than slides. I wish I would have watched this video when I started to use TDD. I reached the same conclusions the hard way in real projects when I started to encounter many problems, but I have never thought about the strategies I follow in the same way he did in the video. Only after two years of consistently adopting the TDD that I finally started to see clean and good designs and very simple and understandable tests, even for very complex features, and definitely not through just the pure classicist way. Also, I might say, many of the things he says about the second TDD approach, the outside-in I think he calls, result from Kent Beck's book, even if not that much explicit.
@vincentwhite7622
@vincentwhite7622 5 жыл бұрын
Sandro is so awesome
@amorestperpe
@amorestperpe 4 жыл бұрын
It would have been nice if you only had one camera. So it could take up the whole screen and be easier to see, and then do a split screen if he moved to like a podium... Just a suggestion, I'm also watching on my phone tho... But great vid.
@daniacedue5508
@daniacedue5508 3 жыл бұрын
optimal, curious though of what uncovered things were on those cards, perhaps next time stretch the presentation duration if neccesary, give it a min and max limit instead of a fixed one , change presentation strategy if surpassed min limit (ex. accelerate, skip eamples.....just to cover those notions)
@matthieucneude5761
@matthieucneude5761 3 жыл бұрын
Very good talk. Some points I would like to come back: 1. I don't like when everybody like to speak about the Single Responsibility Principle. Speaking about cohesion and coupling is enough, and is self explanatory. What does the SRP is claiming that "one" reason to change should be only allowed, which is totally arbitrary and doesn't make sense because this decision depends on the context. The SRP is a useless abstraction hiding important details from the concepts coupling / cohesion. It's confusing, especially for beginners. 2. Mocking as a design decision is good. I think however that anything external you call, you should call it in its own method / function. Then, the result should be dispatched. If there is absolutely no logic in this method, there is no need to test it, so there is no need to mock these external calls. 3. Finally, I like TDD, but I never write the failing test. I know I will test what I'm doing, and I test it as the first smallest iteration of my solution. What's missing from TDD too is the "thinking" part between green and refactor. We should stop at that point, ask ourselves if the direction we take is faithful from the design we decided earlier on, fix our assumptions and continue.
@johanrg70
@johanrg70 2 жыл бұрын
@@milfex-lostex3984 As soon as someone says "always" or "must" or similar statements I disagree on principle. All of those things are tools to help us write better code, but we should also know when to apply them and when not to.
@davidtakac4088
@davidtakac4088 5 ай бұрын
Incredible talk.
@qasanov1985
@qasanov1985 Жыл бұрын
Perfect!. Thanks
@meamzcs
@meamzcs 3 жыл бұрын
This was great!
@victorserranobargues
@victorserranobargues Ай бұрын
Amazing I have learned many new things
@HenrikVendelbo
@HenrikVendelbo Жыл бұрын
It does! if you consider verification to be your only quality to optimise for.
@jorgeolive9605
@jorgeolive9605 3 жыл бұрын
43:00 - He incidentally is jeopardizing the whole classicist school cargo cult. I absolutely agree that TDD won't give you a perfect architecture as some suggest - or that it will naturally move your system to industry proven architectectures for the matter - and you DO need to do some design upfront unless you want to spend an eternity rewriting and refactoring. Classicist might be good for StringCalculators and BankAccounts, but complex systems with lots of I/O dependecies? Yet to find a reasonable example on that style.
@drcl7429
@drcl7429 Жыл бұрын
I'm no expert on TDD but Bob Martin and Kent Beck certainly advocate lots of use of interfaces to allow for testing of single methods without dependencies like databases. It that mocking?
@DodaGarcia
@DodaGarcia 2 жыл бұрын
I love TDD but this idea that TDD makes the application design itself never worked for me, all it did was leave me with a bunch of very stable methods and no idea how to best put them together. I had a lot more success by first planning the entities, then writing a round of pseudocode and only then using TDD to write the individual methods once I understand what the methods are. That pseudocode stage is where a lot of those decisions end up being made, it's where I find most redundancies and logic errors.
@pixelslate9979
@pixelslate9979 Жыл бұрын
Instead of using pseudocode you can use mocks to evolve your design.
@user-tp8xp1hj8e
@user-tp8xp1hj8e 2 жыл бұрын
interesting code, nice work with white board
@juliakirshina4244
@juliakirshina4244 2 жыл бұрын
Sandro is my hero )
@DevTernity
@DevTernity 2 жыл бұрын
Indeed he is.
@zHqqrdz
@zHqqrdz 4 жыл бұрын
Awesome talk. I wanted to add that one can avoid the problem of domain concepts mixing up together by using the Open Closed principle a bit more fiercely. So that in the example Sandro gave, the class "C" would not be modified and get bigger, it would instead be passed another class as some sort of "strategy" in its constructor, having the one used by the class "A" by default and the one used by class "D" as a new one. Those strategies should obviously be specific to their types of consumer.
@ManuelMontoyaRdz
@ManuelMontoyaRdz 3 жыл бұрын
I can't see how TDD is related with the design, TDD is related with the generated code AFTER the Domain Driven Design is finished. It's impossible to capture the Domain with TDD.
@NarendraPathai
@NarendraPathai 2 жыл бұрын
Interesting. Can you please explain in detail?
@Jurigag
@Jurigag 2 жыл бұрын
@@NarendraPathai I think what he meant is - domain driven design should be done before writing any code - you go, talk to your domain expert and decide what entities, events etc you have, then you can code it in TDD manner and i agree with it. DDD is about how you design your product, how it's working etc, TDD is the clean way to implement what you designed. You can as well do DDD on on paper without any line of code.
@FlaviusAspra
@FlaviusAspra 2 жыл бұрын
To be fair, XP has TDD, yes, but it also has architectural Spikes.
@danielc4267
@danielc4267 Жыл бұрын
You can talk forever and I can listen forever :)
@FlaviusAspra
@FlaviusAspra Жыл бұрын
TDD helps newbies not make great mistakes, but it also slows down great teams from making great designs.
@drcl7429
@drcl7429 Жыл бұрын
At 20 mins if you are having problems like that then it's because you are not following SRP. TDD is dependent on implementing SOLID.
@LittleSingerVivanshrivastava
@LittleSingerVivanshrivastava 11 ай бұрын
Complete
@Tony-dp1rl
@Tony-dp1rl 6 ай бұрын
Not a lot of evidence here that TDD leads to good design. Interesting talk all the same, even if it is opinion.
@donwald3436
@donwald3436 3 жыл бұрын
I've seen TDD work very well for hello world. I've never seen it work for a real oroject.
@GunterZochbauer
@GunterZochbauer 3 ай бұрын
It works perfect for algorithms or other rather complicated logic. It works less for rather boring code where just framework parts are wired up on backend or frontend. There tests can't add much value relative to the effort. TDD also works great for creating good APIs where the tests are the first user of the API. With TDD it's usually like with Agile. Most do it completely wrong and then complain that it doesn't work.
@donwald3436
@donwald3436 3 ай бұрын
@@GunterZochbauer Yea in the real world that's maybe 5% of the code base the rest is all glue and business rules.
@GunterZochbauer
@GunterZochbauer 3 ай бұрын
@@donwald3436 That really depends on what projects you work on. You are right. The glue code is often better tested using integration tests.
@purpinkn
@purpinkn Жыл бұрын
Or just use function programming wtf?
Decremental Development (Kevlin Henney)
1:03:06
DevTernity Conference
Рет қаралды 3,8 М.
Martin Fowler @ OOP2014 "Workflows of Refactoring"
27:05
SIGS DATACOM
Рет қаралды 104 М.
Мама и дневник Зомби (часть 1)🧟 #shorts
00:47
Суд над Бишимбаевым. 24 апреля | ОНЛАЙН
7:26:50
ONE MORE SUBSCRIBER FOR 4 MILLION!
00:28
Horror Skunx
Рет қаралды 54 МЛН
Tidy First? Kent Beck on Refactoring
46:20
InfoQ
Рет қаралды 7 М.
🚀  The Economics of Software Design (J.B. Rainsberger)
55:19
DevTernity Conference
Рет қаралды 14 М.
Build Abstractions Not Illusions • Gregor Hohpe • YOW! 2023
47:37
GOTO Conferences
Рет қаралды 14 М.
Why Hasn't TDD Taken Over The World?
15:38
Continuous Delivery
Рет қаралды 46 М.
Jim Coplien and Bob Martin Debate TDD
20:59
toalexsmail
Рет қаралды 156 М.
TDD: The Bad Parts - Matt Parker
30:17
VMware Tanzu
Рет қаралды 53 М.
Самый маленький игровой ПК
0:46
ITMania - Сборка ПК
Рет қаралды 533 М.
ИГРОВОЙ ПК от DEXP за 37 тысяч рублей из DNS
27:53
Такого вы точно не видели #SonyEricsson #MPF10 #K700
0:19
BenJi Mobile Channel
Рет қаралды 1,3 МЛН