Paging KMP対応, QodanaでAndroid Kotlin品質向上, TestFixtures, Play Consoleで収益化推奨アクション, KMP開発体験でモノレポ化, ACP Agent Registry公開, など
https://androiddagashi.github.io/issue/413-2026-02-01
Paging KMP対応, QodanaでAndroid Kotlin品質向上, TestFixtures, Play Consoleで収益化推奨アクション, KMP開発体験でモノレポ化, ACP Agent Registry公開, など
https://androiddagashi.github.io/issue/413-2026-02-01
Let's introduce ourselves.
At Devtank we design, manufacture and provide solutions for businesses including:
#testandmeasurement
#automation
#iotsolutions
#testfixtures
housing our work within two brands HILTOP and OpenSmartMonitor.
Let's introduce ourselves.
At Devtank we design, manufacture and provide solutions for businesses including:
#testandmeasurement
#automation
#iotsolutions
#testfixtures
housing our work within two brands HILTOP and OpenSmartMonitor.
Tests were refactored into a separate Go module, and with this we reduced the number of dependencies on the main `go.mod` from several to only two!
github.com/go-testfixtu...
Tests were refactored into a separate Go module, and with this we reduced the number of dependencies on the main `go.mod` from several to only two!
github.com/go-testfixtu...
Go で実 DB を使ったテストをしてみた - Repro Tech Blog
Go で実 DB を使ったテストをしてみた - Repro Tech Blog
Use @Import(IntegrationTestConfig.class) and @TestPropertySource(locations = "classpath:test-application.properties"). Inject beans like TokenProvider or TestFixtures for test-specific needs.
Use @Import(IntegrationTestConfig.class) and @TestPropertySource(locations = "classpath:test-application.properties"). Inject beans like TokenProvider or TestFixtures for test-specific needs.
Added support for loguru, structlog, polars and pandas.
Change log: testfixtures.readthedocs.io/en/latest/ch...
Added support for loguru, structlog, polars and pandas.
Change log: testfixtures.readthedocs.io/en/latest/ch...
Full control over ordering and partial matching:
from testfixtures import sequence
compare(results, expected=sequence(partial=True, ordered=False)(
Record(id=3),
Record(id=5),
]))
Full control over ordering and partial matching:
from testfixtures import sequence
compare(results, expected=sequence(partial=True, ordered=False)(
Record(id=3),
Record(id=5),
]))
Database queries don't guarantee order? No problem:
from testfixtures import unordered
compare(query_results, expected=unordered([
User(id=1, name='Alice'),
User(id=3, name='Charlie'),
]))
Database queries don't guarantee order? No problem:
from testfixtures import unordered
compare(query_results, expected=unordered([
User(id=1, name='Alice'),
User(id=3, name='Charlie'),
]))
from testfixtures import contains
compare(event_log, expected=contains([
Event(type='user.login'),
Event(type='purchase.completed'),
]))
For logging, though, check out LogCapture: testfixtures.readthedocs.io/en/latest/lo...)
from testfixtures import contains
compare(event_log, expected=contains([
Event(type='user.login'),
Event(type='purchase.completed'),
]))
For logging, though, check out LogCapture: testfixtures.readthedocs.io/en/latest/lo...)
🎯 like() - Partial object comparisons:
from testfixtures import compare, like
compare(api.get_users(), expected = [like(User, email='alice@example.com', role='admin')])
Don't worry about attributes you don't care about!
🎯 like() - Partial object comparisons:
from testfixtures import compare, like
compare(api.get_users(), expected = [like(User, email='alice@example.com', role='admin')])
Don't worry about attributes you don't care about!
If you've ever struggled with writing clear, maintainable test assertions in Python - comparing complex objects, checking API responses, or validating database results - testfixtures can help. 🧵
testfixtures.readthedocs.io/en/latest/
If you've ever struggled with writing clear, maintainable test assertions in Python - comparing complex objects, checking API responses, or validating database results - testfixtures can help. 🧵
testfixtures.readthedocs.io/en/latest/
If you want a bunch of handy #python testing tools, have a look:
testfixtures.readthedocs.io/en/latest/ch...
If you want a bunch of handy #python testing tools, have a look:
testfixtures.readthedocs.io/en/latest/ch...
Go で実 DB を使ったテストをしてみた
https://tech.repro.io/entry/2024/07/30/090000
Go で実 DB を使ったテストをしてみた
https://tech.repro.io/entry/2024/07/30/090000
go-testfixtures/testfixtures is a mature, widely-used Go library (and companion CLI) for loading YAML-defined fixtures into real SQL databases during tests.
https://gitrated.com/go-testfixtures/testfixtures
go-testfixtures/testfixtures is a mature, widely-used Go library (and companion CLI) for loading YAML-defined fixtures into real SQL databases during tests.
https://gitrated.com/go-testfixtures/testfixtures