Eric's video's are the best. He's a great teacher. The other teachers I have to watch a few times or research knowledge gaps they left out.
@ericminick17003 жыл бұрын
You're too kind. Thank you!
@mocaloca2 жыл бұрын
Would love to go even deeper in this topic. Any recommendations?
@tib7209 Жыл бұрын
what if i have a large application without any tests and i want to write tests for it? is the traditional approach more appropriate?
@EricMinick Жыл бұрын
You want to work towards the mix suggested in the video. Starting with some automated functional and API tests makes sense since a small number of tests can provide you insight into whether the key use cases seem to still work. That's super valuable. However, you want the developers to start writing unit tests around whatever code they are touching. If some code is never touched, it may never get a unit test, but you'll start getting tests where the changes are and that's where they're most valuable.
@marishte9 ай бұрын
every time somebody mentions test pyramid, a kitten dies
@ericminick17008 ай бұрын
Can I clap and bring them back like you can with faeries? More seriously, what's your objection to the pyramid framing?
@shirkhanaslanzade9823 жыл бұрын
thank you very much
@IBMTechnology3 жыл бұрын
You're welcome, Shirkhan, thanks for watching! 🙂
@Zivenshy Жыл бұрын
Where is he writing on?
@porkbun5080 Жыл бұрын
If you're using a VR headset, he's writing on your eyes so it slowly seeps into your head so you can remember
@EricMinick Жыл бұрын
It's a sheet of semi-thick, clear glass. By lining the edges with LEDs, you get a bit of a glowing effect when you write on it with dry-erase markers.
@Chris-jm2gx2 ай бұрын
He's obviously writing on air, he's a wizard.
@Deters0n4 жыл бұрын
wait, is he writing backward?
@shreejashetty45704 жыл бұрын
Deters0n 😂
@WeWalkAI4 жыл бұрын
They flip the screen horizontally I think. He is, most probably, right handed :)
@sheksbear3 жыл бұрын
The video is flipped
@kingofcampbell64134 жыл бұрын
maybe we should have more layers of tests in the pyramid test structures.
@ericminick17003 жыл бұрын
Performance, useability, penetration, etc, etc, etc. They're all real. The principles are the same though. The more you can do against stable surfaces like APIs the better. The more you can do quickly, the better. The expensive testing needs to be done judiciously. You can apply this directly to security land as well. Static code scans are relatively cheap, active scans less so, manual white-hat penetration tests are very expensive. You want all of it, but optimize for cheap and fast.