10 Matching Annotations
- Mar 2024
-
-
Thinking about how you will observe whether things are working correctly or not ahead of time can also have a big impact on the quality of the code you write.
YES. This feel similar to the way that TDD can also improve the code that you write, but with a broader/more comprehensive outlook.
-
- Dec 2022
-
www.guru99.com www.guru99.com
-
Some good Qs,many redudant/useless.
-
- Dec 2021
-
www.endpointdev.com www.endpointdev.com
Tags
Annotators
URL
-
- Nov 2020
-
blogs.oracle.com blogs.oracle.com
-
kentbeck,
-
- Apr 2020
-
code.visualstudio.com code.visualstudio.com
-
The practice of test-driven development is where you actually write the tests first, then write the code to pass more and more tests until all of them pass.
Essence of TDD
Tags
Annotators
URL
-
-
medium.com medium.com
-
It’s still a good idea to keep your code in three different buckets, and keep these buckets isolated from each other:Display/UI ComponentsProgram logic/business rules — the stuff that deals with the problem you’re solving for the user.Side effects (I/O, network, disk, etc.)
How do I organize my code like this? What's the directory structure look like.
-
- Mar 2018
-
skmetz.home.mindspring.com skmetz.home.mindspring.comSlide 591
Tags
Annotators
URL
-
- Oct 2017
-
tutorials.jenkov.com tutorials.jenkov.com
-
Test first development, also known as Test Driven Development (TDD) is a development style in which you write the unit tests before you write the code to test.
Actually, there's a lot of debate regarding this exact distinction. It's a question of whether Test First Programming is the same as Test Driven Development.
The answers lie, however, into the intent of approach.
-
- Oct 2016
-
www.objc.io www.objc.io
-
We shouldn’t actually care what the target/action values on the bar button item are. We should only care about what happens when it is pressed. Everything else is an implementation detail
"We should only care about what happens when it is pressed"
We have target and action in the button, so we don't need to test for target and action separately, we can simulate the behavior instead. We shouldnt cae about implementation details
-
- Sep 2016
-
clean-swift.com clean-swift.com
-
Isolate the dependencies Write the test first Draw the boundary Implement the logic
TDD steps
-