Hi, I am happy to share how I implement Snapshot Testing using swift-snapshot-testing library from Pointfree's GitHub! Snapshot Testing is one of testing strategy that compares saved captured screen image with the new captured screen image, so that we can know that if the UI is altered or not, to maintain the UI consistency. Let … Continue reading #3 Explore Swift Snapshot Testing on iOS
#4 TDD + Binary Search
Hi, I am happy to share on how to use Test Driven Development on a Data Structure and Algorithm problem, in this case, Binary Search problem. Binary Search is one search of DSA problem and it is a good idea to solve that not only in raw, but also using Test Driven Development, to guarantee … Continue reading #4 TDD + Binary Search
#3 TDD + Palindrome Checker
Hi, I am happy to share on how to use Test Driven Development on a Data Structure and Algorithm problem, in this case, Palindrome Checker problem. Palindrome Checker in String is one of DSA problem and it is a good idea to solve that not only in raw, but also using Test Driven Development, to … Continue reading #3 TDD + Palindrome Checker
#2 TDD + Find Duplicated Character in String
Hi, I am happy to share on how to use Test Driven Development on a Data Structure and Algorithm problem, in this case, to Reverse a String problem. Find Duplicated Character in String is one of DSA problem and it is a good idea to solve that not only in raw, but also using Test … Continue reading #2 TDD + Find Duplicated Character in String
#1 Test Driven Development Reverse a String
Hi, I am happy to share on how to use Test Driven Development on a Data Structure and Algorithm problem, in this case, to Reverse a String problem. Reverse a String is one of DSA problem and it is a good idea to solve that not only in raw, but also using Test Driven Development, … Continue reading #1 Test Driven Development Reverse a String