50,415 questions
Best practices
0
votes
0
replies
22
views
Tool to test desktop applications
We develop Java (Swing, JavaFX) and C++ desktop applications. We have automated tests for them, though the AQA is not doing as well at the moment.
We are transitioning away from TestComplete. The ...
-5
votes
0
answers
32
views
How are you all building a modern reliability test system that actually catches memory leaks before production? [closed]
I’ve been looking into our current QA pipeline, and while our functional tests are passing, we still see stability issues after 48 hours of uptime. I’m curious—what does your reliability test system ...
-5
votes
0
answers
45
views
How can we import Swagger in Postmate Client? [closed]
We recently swticed to Postmate Client, a vscode extension for API testing.
How can we import an entire Swagger as a collection?
Tooling
0
votes
1
replies
22
views
How can you test how your front-end code actually communicates with your back-end?
After developing the backend, I ask myself how to test whether the frontend is processing the data from the backend correctly. For that I have an example code:
Backend (FastAPI):
@router.post(
&...
-1
votes
0
answers
87
views
How to test a component that uses useActionState hook? [closed]
I've been trying to get my test case that includes useActionState() and <form action={}> to pass.
The scenario is as follows:
When the "add balance" button is clicked, a <Modal/>...
0
votes
0
answers
52
views
Getting `Failed assertion: line 2242 pos 12: '!timersPending'` in sqflite_ffi library when testing
I've got a moderately complicated app I'm trying to write widget tests for, and when I switched the backend to sqflite I now get a ton of these errors, even though the actual code I'm testing runs ...
Tooling
1
vote
0
replies
15
views
Lightweight test management for tracking manual + automated test runs without heavy overhead?
I am evaluating options for managing test cases and test runs for a small to mid sized engineering team. The goal is not heavy reporting or strict process enforcement, but simply having a reliable way ...
1
vote
0
answers
26
views
How to unit test a nitro plugin in a nuxt 4 app?
I made a little nuxt app with a plugin that fetches some data and put it in a database.
I expected the testing of a nitro plugin in my nuxt application to be easy. When I try to write unit tests for ...
0
votes
1
answer
173
views
How can http.Server be made to hold open a connection?
I'd like to add a unit test for Go's http.Server.Shutdown() timing out, but there are no connections held open when the shutdown signal is sent, so it never gets to checking for timeouts, even though ...
Advice
1
vote
2
replies
31
views
Need help learning StressStimulus (Performance Testing)
I’m looking to learn the StressStimulus tool for performance testing. A single 2–3 hour session would be sufficient.
I’ve tried searching for online courses but haven’t found any good ones, as the ...
0
votes
1
answer
116
views
Swift Testing - load data before the tests start
This is a follow-up to a previous question: Xcode XCTestCase - wait for setup to complete before starting tests
In the comments it was suggested to switch to Swift Testing instead of using XCTestCase, ...
5
votes
1
answer
149
views
How should I test Serialization/Deserialization with Google Test?
So I have a light framework that can serialize my input data to either text or binary.
This serialization writes to those files with output streams and stores parameters.
Example:
I have a specific ...
Best practices
0
votes
5
replies
99
views
API testing approach
My team is developing functional component (developed in C#) which is API based. The component will handle API requests from external system (future to have UI test). I prefer to have API testing ...
0
votes
1
answer
62
views
xUnit tests fail when launched from Solution Explorer
When I run my tests from the Solution Explorer (clicking "Run" from the tree), 13 tests from my test suite fail. This is 100% reproducible.
When launching the same tests from the Test ...
1
vote
0
answers
106
views
mock feature in SeaORM v1.1.19 makes DatabaseConnection lose the trait to clone it
Im doing a Actix Web rust backend with SeaORM, I finished and it works fine, so I'm doing some tests, SeaORM has a mock feature, which you can enable in the Cargo.toml file, but enabling it makes the ...