Unit Testing with CTest in CMake

Unit Testing with CTest in CMake

Introduction: CTest is the CMake testing tool. This article explores the functionalities of CTest by writing and testing code that can sum integers. To illustrate that CMake imposes no restrictions on the language used for actual testing, we will use C++ executables for testing, as well as Python scripts and shell scripts. For simplicity, we … Read more

Quick Start Guide to Kiwi iOS Automation Testing Framework

testkuaibao|Software Testing Self-Learning WeChat Public Account 1, 2, 4 Every Day at 9:00, Don’t Miss It Introduction   Kiwi is a behavior-driven testing framework suitable for iOS development, designed to provide a simple and easy-to-use BDD (Behavior Driven Development) library. Installation   Install using Cocoapods, add the following configuration in the test Target: pod 'Kiwi', '3.0.0' Basic … Read more