Gelmisim 2000 yasina hala unittest yaziyorum ya😢
November 11, 2025 at 9:03 AM
Gelmisim 2000 yasina hala unittest yaziyorum ya😢
🧪 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...
#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
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
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
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
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
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.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
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.com/MikeSchulze/...
#unittest #testing #indiedev #GodotEngine #solodev
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
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 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
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
I recently generated a Selenium unittest and it looked suprisingly good. For boilerplate code it could save time. But I don't use it. It's just not in my system
March 4, 2025 at 10:35 PM
I recently generated a Selenium unittest and it looked suprisingly good. For boilerplate code it could save time. But I don't use it. It's just not in my system
Gastei as últimas horas criando um patch porque descobri que era um erro muito besta pego no unittest que tava impedindo o Python compilar em máquina velha
December 12, 2024 at 3:32 AM
Gastei as últimas horas criando um patch porque descobri que era um erro muito besta pego no unittest que tava impedindo o Python compilar em máquina velha
一般 Python 測試就直接用 Python 內建的 unittest 框架撰寫。如果有 numpy,也會用一些 numpy 提供的輔助程式。Python 測試常用 pytest 來執行。
C++ 測試常用 Google test 框架撰寫與執行。
測試寫得太細,會造成很多假警報 (false alarm),花很多時間修正不必修的問題。但這也沒有太多預防手段,只能小心避免。犯過夠多錯,就知道怎樣算是太細。
這種判斷也是資深工程師的價值。經驗夠多就會看得準。如果不知道該怎麼判斷,先照著前輩說的作比較好。
C++ 測試常用 Google test 框架撰寫與執行。
測試寫得太細,會造成很多假警報 (false alarm),花很多時間修正不必修的問題。但這也沒有太多預防手段,只能小心避免。犯過夠多錯,就知道怎樣算是太細。
這種判斷也是資深工程師的價值。經驗夠多就會看得準。如果不知道該怎麼判斷,先照著前輩說的作比較好。
February 23, 2025 at 12:18 AM
一般 Python 測試就直接用 Python 內建的 unittest 框架撰寫。如果有 numpy,也會用一些 numpy 提供的輔助程式。Python 測試常用 pytest 來執行。
C++ 測試常用 Google test 框架撰寫與執行。
測試寫得太細,會造成很多假警報 (false alarm),花很多時間修正不必修的問題。但這也沒有太多預防手段,只能小心避免。犯過夠多錯,就知道怎樣算是太細。
這種判斷也是資深工程師的價值。經驗夠多就會看得準。如果不知道該怎麼判斷,先照著前輩說的作比較好。
C++ 測試常用 Google test 框架撰寫與執行。
測試寫得太細,會造成很多假警報 (false alarm),花很多時間修正不必修的問題。但這也沒有太多預防手段,只能小心避免。犯過夠多錯,就知道怎樣算是太細。
這種判斷也是資深工程師的價值。經驗夠多就會看得準。如果不知道該怎麼判斷,先照著前輩說的作比較好。
The latest update for #Keploy includes "What Is The Difference Between Pytest And Unittest" and "What Is #UnitTesting?".
#testing #ai https://opsmtrs.com/3Iuqtl6
#testing #ai https://opsmtrs.com/3Iuqtl6
Keploy
Keploy is a developer-centric backend testing tool. It makes backend tests with built-in-mocks, faster than unit tests, from user traffic, making it easy to use, powerful, and extensible.
opsmtrs.com
May 8, 2025 at 1:26 AM
The latest update for #Keploy includes "What Is The Difference Between Pytest And Unittest" and "What Is #UnitTesting?".
#testing #ai https://opsmtrs.com/3Iuqtl6
#testing #ai https://opsmtrs.com/3Iuqtl6
Last thing I asked it to do was refactor a test it wrote into from unittest to pytest. It came up with a plan that seems reasonable enough but it still defaults to using pip
May 23, 2025 at 1:12 AM
Last thing I asked it to do was refactor a test it wrote into from unittest to pytest. It came up with a plan that seems reasonable enough but it still defaults to using pip
It would be cool if it had the same kinda stuff `unittest` does, where I could have a "setup" and "teardown" handler to get things into a known state prior to the benchmark being ran,
And also have the ability to run a few warm up runs before taking a measurement,
And also have the ability to run a few warm up runs before taking a measurement,
August 8, 2025 at 8:56 PM
It would be cool if it had the same kinda stuff `unittest` does, where I could have a "setup" and "teardown" handler to get things into a known state prior to the benchmark being ran,
And also have the ability to run a few warm up runs before taking a measurement,
And also have the ability to run a few warm up runs before taking a measurement,
ctrl-shift+T: Go to test
Open the unittest that goes along this file.
Open the unittest that goes along this file.
September 9, 2025 at 10:11 AM
ctrl-shift+T: Go to test
Open the unittest that goes along this file.
Open the unittest that goes along this file.
うっかり、
python単体テストフレームワークを、
モダンな"pytest"に移行せず、
agentが最初に提出してきた"unittest"のまま放置してた
もうissuesが37を数えるまでprojectが育っていた
試しに、だいぶコードベースがでかくなったこのタイミングで、
"pytest"に移行させてみる
github.com/cat2151/cat-...
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単体テストフレームワークを、
モダンな"pytest"に移行せず、
agentが最初に提出してきた"unittest"のまま放置してた
もうissuesが37を数えるまでprojectが育っていた
試しに、だいぶコードベースがでかくなったこのタイミングで、
"pytest"に移行させてみる
github.com/cat2151/cat-...
python単体テストフレームワークを、
モダンな"pytest"に移行せず、
agentが最初に提出してきた"unittest"のまま放置してた
もうissuesが37を数えるまでprojectが育っていた
試しに、だいぶコードベースがでかくなったこのタイミングで、
"pytest"に移行させてみる
github.com/cat2151/cat-...
pylint and ruff didnt seem to work on windows but pylsp works absolutely fine and is listing symbols, showing hints on hover & offering autocomplete.. it's nice! idk how many issues one might encounter for other languages tho
March 2, 2025 at 8:04 PM
pylint and ruff didnt seem to work on windows but pylsp works absolutely fine and is listing symbols, showing hints on hover & offering autocomplete.. it's nice! idk how many issues one might encounter for other languages tho
É celery,geodjango, a api rest, unittest,swagger, o figma,é revisar é aprender javascript, os componentes no react, a documentação, é o docker,é o aws
May 28, 2025 at 12:06 AM
É celery,geodjango, a api rest, unittest,swagger, o figma,é revisar é aprender javascript, os componentes no react, a documentação, é o docker,é o aws
Se for pra um projeto pequeno (individual e/ou baixo KLOC) provavelmente o Unittest mesmo. É uma dependência a menos.
Para projetos maiores pytest. É o mais comum de se usar; a comunidade é maior, tem mais exemplos e extensões disponíveis.
Para projetos maiores pytest. É o mais comum de se usar; a comunidade é maior, tem mais exemplos e extensões disponíveis.
January 23, 2025 at 1:30 PM
Se for pra um projeto pequeno (individual e/ou baixo KLOC) provavelmente o Unittest mesmo. É uma dependência a menos.
Para projetos maiores pytest. É o mais comum de se usar; a comunidade é maior, tem mais exemplos e extensões disponíveis.
Para projetos maiores pytest. É o mais comum de se usar; a comunidade é maior, tem mais exemplos e extensões disponíveis.
これはMisskeyの文脈で、unittestが動かせる程度の環境を整えたりするのが大変という意味(モックしたり依存関係の依存関係をprovideに列挙して用意したりとか準備が大変)
テスト書くの大変だからね!
May 25, 2025 at 11:51 AM
これはMisskeyの文脈で、unittestが動かせる程度の環境を整えたりするのが大変という意味(モックしたり依存関係の依存関係をprovideに列挙して用意したりとか準備が大変)
oh yeah, rad! I've been having a lot of fun with just python's built-in unittest for my project and figuring out mocking and test discovery, but def pytest seems more robust
May 15, 2025 at 8:37 PM
oh yeah, rad! I've been having a lot of fun with just python's built-in unittest for my project and figuring out mocking and test discovery, but def pytest seems more robust
Oh, and taking inspiration from #pytest, I added colour to #unittest output in this one 🎨
docs.python.org/3.14/whatsne...
#Python #CPython #Python314 #release
docs.python.org/3.14/whatsne...
#Python #CPython #Python314 #release
December 17, 2024 at 5:10 PM
Oh, and taking inspiration from #pytest, I added colour to #unittest output in this one 🎨
docs.python.org/3.14/whatsne...
#Python #CPython #Python314 #release
docs.python.org/3.14/whatsne...
#Python #CPython #Python314 #release
もしかしなくてもunittest作り込み過ぎ説はあるんだけどホワイトボックスって考えたら可能な限りトレースした方が良いのではと思ってしまう
March 14, 2024 at 1:37 PM
もしかしなくてもunittest作り込み過ぎ説はあるんだけどホワイトボックスって考えたら可能な限りトレースした方が良いのではと思ってしまう
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.
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.
December 4, 2024 at 11:00 AM
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.
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.
Boost your unit testing with Spargine's UnitTester class! Streamline your workflow by logging and saving unit test data to Debug output or files with powerful methods like PrintToDebug and SaveToFile. Perfect for debugging and reporting.
#dotnet #unittest #devtools #CSharp #MVPBuzz
#dotnet #unittest #devtools #CSharp #MVPBuzz
Boost Your .NET Projects: Mastering Unit Testing with Spargine’s UnitTester Class
The UnitTester class in the DotNetTips.Spargine.Tester assembly aids developers in logging unit test data efficiently. It features methods like PropertiesToString, PrintToDebug, and SaveToFile, whi…
dotnettips.wordpress.com
June 6, 2025 at 3:35 PM
an evergreen hot take of mine: if your unit test makes an outbound network connection (i.e. not localhost) then it is not a fucking unittest.
August 24, 2023 at 11:47 PM
an evergreen hot take of mine: if your unit test makes an outbound network connection (i.e. not localhost) then it is not a fucking unittest.