Skip to main content
Advice
0 votes
2 replies
46 views

When creating integration tests for ASP.NET Core 10 web apps, we use the WebApplicationFactory<TEntryPoint> class. When a single ASP.NET Core web project is used as SUT, it's simple and it works:...
AlexB's user avatar
  • 4,684
0 votes
1 answer
71 views

I'm working on integration tests for a web application that's running in a Docker container within our GitLab CI/CD pipeline. The application is a frontend that requires Kerberos/SPNEGO authentication ...
ben green's user avatar
0 votes
1 answer
63 views

I'm on Spring Boot 3.5.6 with Java 25 (Temurin). I followed this tutorial. My config: @Configuration @EnableScheduling @Profile(value = "!integrationtest") public class SchedulingConfig { } ...
Gunnar's user avatar
  • 413
0 votes
0 answers
66 views

I'm working on an Integration test, where I want to use Testcontainers.CosmosDb, however it takes quite a long time (about 2min) for the CosmosDb to be ready. var network = new NetworkBuilder() ...
smolesen's user avatar
  • 1,405
2 votes
1 answer
68 views

I'm testing that: @RunWith(SpringRunner.class) @DataJpaTest @Import({ OrderService.class, UserService.class }) @AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE) public class ...
VezzoLayer's user avatar
-4 votes
1 answer
121 views

I have a package "tools" that expose a method that must execute some logic only one time. The next calls don't do nothing. The file tools/tools.go is like: package tools import ( "...
Santiago Rincon's user avatar
1 vote
0 answers
52 views

I developed a REST API Quarkus project based on an OpenAPI specification to validate contract testing with Microcks. OpenAPI Specification openapi: 3.0.0 x-stoplight: id: 1q8257l49074g info: title:...
sonia belhadj's user avatar
1 vote
1 answer
95 views

I have a console app constructed using the following code: public partial class Program { private static async Task<int> Main(string[] args) { Host.CreateDefaultBuilder(args) ...
khteh's user avatar
  • 4,280
0 votes
0 answers
76 views

I'm working on an ASP.NET Core Web API that uses PuppeteerSharp to create PDF files from HTML. It has a Program class: public partial class Program { public static void Main(string[] callParams) ...
Jean-David Lanz's user avatar
3 votes
0 answers
47 views

I am setting up an automated integration test environment for a large, existing Entity Framework 6 project that uses a MySQL database. My goal is to create a fresh, empty database schema directly from ...
Jason Hunter's user avatar
0 votes
0 answers
51 views

I have an application that's currently using Mocha as its test runner, I've been exploring the native Node.js test runner but one stumbling block I've run into almost immediately is the question of ...
VirtualWolf's user avatar
1 vote
0 answers
39 views

I have a SpringBoot app and I have added JUnit5 integration tests that use testcontainers: class ControllerClassTest extends AbstractIntegrationTest { @ParameterizedTest(name = "{0}") ...
bash UI's user avatar
  • 11
3 votes
1 answer
131 views

I'm integration testing an ASP.NET Core app by using WebApplicationFactory. When starting the test server, I want to pass a command-line argument to the tested app, so to the Main method contained in ...
kjeld-jensen's user avatar
-1 votes
1 answer
87 views

I have a dozen feature branches that I would like to manually test at the same time by merging them into a single test branch, to avoid repeating the overhead of setting up the test environment for ...
Sparr's user avatar
  • 7,830
0 votes
0 answers
94 views

I'm currently working on integration tests for my project, which consists of two main components: an application and an engine. Both components are deployed into Azure Container Apps. The engine ...
user1877600's user avatar

15 30 50 per page
1
2 3 4 5
472