Search Articles — Sudonull

Search Results

In this project

Unit testing embedded: principles

https://sudonull.com/unit-testing-embedded-principles

Analysis of advantages, disadvantages, and 20+ principles of unit testing in firmware. For middle/senior developers: refactoring, coverage, HIL on target. Learn how to implement tests without spaghetti code.

Testo framework: PHP tests and benchmarks

https://sudonull.com/testo-framework-php-tests-and-benchmarks

Explore Testo — an independent framework for PHP testing. Unit tests, inline checks, benchmarks without PHPUnit. Installation, code examples, plugins. Start beta testing.

Testing Pyramid for AI Assistants in QA

https://sudonull.com/testing-pyramid-for-ai-assistants-in-qa

How the testing pyramid solves the LLM context window problem. Practical examples of test generation at different levels. Learn why AI works better with Unit tests.

ISO-TP driver: implementation and tests for CAN

https://sudonull.com/iso-tp-driver-implementation-and-tests-for-can

Review of ISO-TP library from Raccoon Developers: API, iqueue, unit tests, hardware validation. Transmission up to 4094 bytes over CAN. Instructions for middle/senior dev.

React Testing Library: Ditching Snapshots

https://sudonull.com/react-testing-library-ditching-snapshots

Transition from Enzyme to RTL: testing React component behavior, not markup. Checklists, examples, migration. Learn how to write robust tests.

From the web

Jun 24, 2026 ·

https://www.geeksforgeeks.org/software-testing/unit-testing-software-testing/

Jun 24, 2026 · Unit Testing is a software testing method in which individual units or components of a software application (such as functions, methods, or classes) are tested in isolation to verify that they work correctly as expected. It helps find and fix defects at the very beginning of the development cycle, reducing the cost and effort of debugging later. It promotes writing modular, clean, and ...

Oct 28, 2024 ·

https://dev.to/testifytech/what-is-unit-testing-a-complete-guide-with-examples-31pe

Oct 28, 2024 · Unit testing refers to a software development practice in which you test each unit of an application separately. In this scenario, a unit could refer to a function, procedure, class, or module — essentially, it’s the smallest testable part of the software.

Oct 7, 2025 ·

https://www.geeksforgeeks.org/blogs/unit-testing-best-practices/

Oct 7, 2025 · Unit testing is a key practice in software development that validates individual components before integration. It helps in early bug detection, ensures each unit functions correctly, and improves code quality and maintainability. By identifying issues at the unit level, developers can save time, reduce errors, and streamline the development process. Check This Out: Take your skills to the ...

Mar 22, 2025 ·

https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-best-practices

Mar 22, 2025 · Learn best practices for writing unit tests that drive code quality and resilience for .NET Core and .NET Standard projects.

Oct 28, 2025 ·

https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-csharp-with-xunit

Oct 28, 2025 · Learn unit test concepts in C# and .NET through an interactive experience building a sample solution step-by-step using dotnet test and xUnit.

May 1, 2026 ·

https://quashbugs.com/blog/unit-testing-guide-for-beginners

May 1, 2026 · Beginner’s guide to unit testing . Learn key concepts, test structures, tools like Jest & JUnit, and start writing your first unit test today.

Feb 20, 2026 ·

https://www.testmuai.com/learning-hub/unit-testing/

Feb 20, 2026 · Unit testing is a critical process in software development, where individual components of a program are tested in isolation to ensure they function correctly. This method, primarily performed by developers, focuses on the smallest units of code, like functions or methods, to identify and fix issues early, enhancing overall software quality. This unit test checks the basic functionality of the ...

Trending Now