Tag: Unit Testing

What is TDD?

XCTestCase lifecycle

XCTestCase has many methods as part of its lifecycle. It has a class setup method that executes only once before ...

What is TDD?

@testable

At the beginning of the FizzBuzz code challenge , we deleted the @testable line of code. What does this @testable ...

What is TDD?

What is SUT

In many articles about TDD, you will find the term SUT, which refers to the System Under Test. Using SUT ...

What is TDD?

Why unit testing is valuable

There are many benefits of writing unit tests. The test we write can serve as a documentation of what the ...

What is TDD?

Cyclomatic complexity

According to Wikipedia (https://en.wikipedia.org/wiki/Cyclomatic_complexity): Cyclomatic complexity is a software metric used to indicate the complexity of a program. It is ...

Popular