Great explanation! I recently have problem about testing because we do test driven development in my work. I never do testing in my personal project. Really helpful
I would say definetly add it, you might doubt it now but trust me when there is a time when you are making lot of changes to your package testing will help you a ton
We are doing a project where a GoogleMap is the main screen. There are markers and when you click on them, something specific happens. We have no idea how to test this and I can't find anything online. Any idea?
Woah,... I never create tests, when apps become more and more complex, I realized that I need tests. Test also needed to prove to others that the app works just fine. I am reluctant in creating tests (unit, widgets) because if I change my widgets or things, I also need to work on tests that create more work. For assurance, yes why not. :D
Great explanation! I recently have problem about testing because we do test driven development in my work. I never do testing in my personal project. Really helpful
Pleasure Rizky, I appreciate the comment 👏🔥🔥 Hope this help 👏
Unit testing and generally testing in flutter is so enjoyable. You can easily check coverage and writing test is like a game.
Can you show more such examples of unit testings implemented in your apps ?
Could you prepare a video about *flutter bloc: ^8.0.1* Please
I hope you will continue it🙌
You can check the following (Widget Testing) if you want. Link in the deacription 🙌
Thank you for your efforts
Great video!
Super simple explanation for begginers like me :) Thank you !
Pleasure thank you also 🔥
Thnk for ur learn
Created package 1 week ago and was confused whether to add testing or not. What's your take?
I would say definetly add it, you might doubt it now but trust me when there is a time when you are making lot of changes to your package testing will help you a ton
We are doing a project where a GoogleMap is the main screen. There are markers and when you click on them, something specific happens. We have no idea how to test this and I can't find anything online. Any idea?
Thanks!
Woah,... I never create tests, when apps become more and more complex, I realized that I need tests.
Test also needed to prove to others that the app works just fine.
I am reluctant in creating tests (unit, widgets) because if I change my widgets or things, I also need to work on tests that create more work.
For assurance, yes why not. :D
thank you
Thanks man
Pleasure!
Is GetX testable?
Before now I used to think of testing as rocket science 😊but after this video, I now think differently
Nicee! Its simple than it look like 🙏
What if you have multiple counters on the page? How does it know which one to test?
First, you counters should have different names.
Test them by calling/using their names
The correct name is AAA (arrange/act/assert) and not setup/do/test.
🤓
What happens if a unit test in a group fails? Will the entire group fail?