The C# Dev Kit console shows the running test discovery for a project.
Tests are available, running test discovery: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll
Scheduling discovery: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll [1718198563164]
Using custom runsettings file at: d:\development\workspace\gdUnit4Net\test\.runsettings
========== Starting test discovery ==========
CheckGdUnit4ApiVersion gdUnit4Api, Version=4.2.3.0
Discover tests for assembly: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll
Discover: TestSuite Examples.ExampleTest with 2 TestCases found.
Discover: TestSuite Example.Tests.API.Asserts.AssertionsTest with 9 TestCases found.
Discover tests done, 2 TestSuites and total 11 Tests found.
========== Test discovery finished: 11 Tests found in 407.8 ms ==========
11 tests discovered from D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll in 407.7721 ms
It shows gdUnit4Api, Version=4.2.3.0 but I have set to the latest version (4.2.4) as dependency in my project
The gdUnit4.test.adapter 1.1.1 was original bundled with gdUnit4.api 4.2.3 and shows this version and not the dynamic loaded version.
Steps to Reproduce
checkout the example project and do
dotnet clean
dotnet build
Check the Dev Kit explorer console, it shows:
Tests removed: d:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll
Tests are available, running test discovery: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll
Scheduling discovery: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll [1718198563164]
Using custom runsettings file at: d:\development\workspace\gdUnit4Net\test\.runsettings
========== Starting test discovery ==========
CheckGdUnit4ApiVersion gdUnit4Api, Version=4.2.3.0
Discover tests for assembly: D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll
Discover: TestSuite Examples.ExampleTest with 2 TestCases found.
Discover: TestSuite Example.Tests.API.Asserts.AssertionsTest with 9 TestCases found.
Discover tests done, 2 TestSuites and total 11 Tests found.
========== Test discovery finished: 11 Tests found in 407.8 ms ==========
11 tests discovered from D:\development\workspace\gdUnit4Net\example\.godot\mono\temp\bin\Debug\exampleProject.dll in 407.7721 ms
The used Test Adapter version
1.1.1
The used Godot version
v4.3.dev6.mono.official [89850d553]
Operating System
all systems
Describe the bug
The C# Dev Kit console shows the running test discovery for a project.
It shows
gdUnit4Api, Version=4.2.3.0
but I have set to the latest version (4.2.4
) as dependency in my projectfrom list dependencies, the correct versions are resolved
Dev hint
The
gdUnit4.test.adapter
1.1.1 was original bundled withgdUnit4.api
4.2.3 and shows this version and not the dynamic loaded version.Steps to Reproduce
checkout the example project and do
Check the Dev Kit explorer console, it shows:
Minimal reproduction project
No response