mock_gen 0.1.21

Interface and mock generator for C++ classes
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'mock_gen'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=mock_gen",
                    "--package=mock_gen"
                ],
                "filter": {
                    "name": "mock_gen",
                    "kind": "bin"
                }
            },
            //"args": ["-h"],
            "args": [
                "i-mock",
                "actuator_actuator_app.h",
                "actuator_actuator_c"
            ],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'mock_gen'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=mock_gen",
                    "--package=mock_gen"
                ],
                "filter": {
                    "name": "mock_gen",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}