Adding unit tests

This commit is contained in:
2025-11-02 14:41:48 -05:00
parent ef930672ef
commit fea450ec34
6 changed files with 169 additions and 2 deletions

14
.vscode/launch.json vendored
View File

@@ -39,6 +39,16 @@
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Launch (unit tests)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "/usr/local/bin/dotnet",
"args": ["test"],
"cwd": "${workspaceFolder}/MarketDataUnitTests",
"console": "internalConsole",
"stopAtEntry": false
}
]
}
}