i have issue with bullseye coverage.
I need to run bullseye coverage from command line for continious integration.
I use commands:
covselect.exe --file test.cov --add .\
cov01.exe --on
MSBuild /maxcpucount:8 /t:Rebuild /p:Configuration=Release /p:Platform="x64" MVPF.sln
MSBuild /maxcpucount:8 /t:Rebuild /p:Configuration=Release /p:Platform="x64" MVPFTest.sln
cov01.exe --off
covxml -f test.cov -o bullseyecoverage-result.xml
but i have empty test.cov and report.xml files into working directory.
Could you explain what i should to do step by step for coverage measuring?