I am trying to write integration_test for my location app. I need to allow location permission from my integration_test. I have set ANDROID_SDK_ROOT in my windo
I have two C# projects. Project A is a NuGet package. Project B is a web service. Project A calls the web service. We want B (the web serice) to remain backward
I have 4 input fields that must be filled to activate a form submit button. Date Time select textarea I created a cypress test to fill each of them by order and
I'm proofing out an integration test with NestJS/KafkaJS. I have everything implemented except the function on the event listener (consumer) for the topic I'm e
I have Serverless application (node:14.19.1-bullseye-slim) with almost 400 tests. There are mostly functional tests with using of local DynamoDb. The problem is
I want to write an integration test for a delete method in my controller, but no matter how many times I tried rewriting it, I am still getting different errors
I'm using Citrus for perform integration tests based on http requests. The test should perform steps as follows: Sending a POST http request to external service
I'm trying to run two tests in a same group in one test file. If I split them into two separate test files, they are working fine. But if I add them in a group,
I am trying to run my integration test on Firebase Test Lab. flutter build apk -t lib/main_dev.dart ./gradlew app:assembleAndroidTest -Ptarget=lib/main_dev.dart
I have integration tests named with "IT" at the end and the tests are excluded by default. My build.gradle contains: test { if (!project.hasProperty('runITs
I had a mocked bean in a configuration: @Profile('test') @Configuration class TestSecurityConfig { private final mockFactory = new DetachedMockFactory() @Pr
I have a CitrusEndpoints server configuration @Bean public HttpServer myService() { return CitrusEndpoints. http(). server().
I want to run a Quarkus integration test in order to verify OpenAPI yaml generated from the source code. According to the documentation, it should be possible t
public class ModelDTO implements Serializable { private Long id; private String datasetName; @JsonRawValue private String json; } Post API i
I have a .NET 6 web API project with existing integration tests for some of the API endpoints. The project uses Serilog for logging and everything was fine so f
We are running 200 - 300 UI test cases from an Azure pipeline. All the test cases are running on self hosted Windows agents, where all the dependencies are inst
I am trying to write some integration tests in my spring application. POM: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.
I'm learning how to write tests and especially tests that have a producer in it. I cannot post all the classes because it's HUGE (and not mine, I should just pr
I don't know if this question is appropriate for this forum. I am developing a C# ASP.NET Core webservice and a client-side library that uses this webservice. A
The Goal Run integration tests but stub sub-requests to a specific domain that occur within the API code itself Ideally, do this via docker-compose because I wa