Giter VIP home page Giter VIP logo

Comments (3)

matepek avatar matepek commented on May 27, 2024

Hi,
I'm not sure, I understand your problem.
What would you like to do?
Did you find my project in Visual Studio Code extension market?

from vscode-catch2-test-adapter.

magom001 avatar magom001 commented on May 27, 2024

Hi!
Yeah, I was trying to switch from clion to vs code, but never managed to get my catch test suites to be visible in the explorer. I did not find readme very helpful. A short walkthrough on how to setup a c++ project in vs code with catch would simplify things a ton!

from vscode-catch2-test-adapter.

matepek avatar matepek commented on May 27, 2024

I assume you've installed my extension.

  1. Open Settings (-> Workspace settings)
  2. Search for catch2 executables
  3. Click Edit in settings.json

Now hopefully you will see the default setting, something like this:

// The location of your test executables (relative to the workspace folder or absolute path) and with a lot of other setting. (https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)
  "catch2TestExplorer.executables": [
    {
      "name": "${filename} (${relDirpath}/)",
      "pattern": "{build,Build,BUILD,out,Out,OUT}/**/*{test,Test,TEST}*",
      "cwd": "${absDirpath}",
      "env": {
        "C2TESTEXECUTABLEPATH": "${absPath}"
      }
    }
  ]

You have to copy and personalise catch2TestExplorer.executables variable. (Place your settings to the right hand side editor to override.)
Check README for personalisation details.

For deeper understanding of vscode settings click here: https://code.visualstudio.com/docs/getstarted/settings

Long story short:
Create a .vscode/settings.json file with customized content like this:

{
  "catch2TestExplorer.executables": [
    {
      "name": "${filename} (${relDirpath}/)",
      "pattern": "{build,Build,BUILD,out,Out,OUT}/**/*{test,Test,TEST}*",
      "cwd": "${absDirpath}",
      "env": {
        "C2TESTEXECUTABLEPATH": "${absPath}"
      }
    }
  ]
}

from vscode-catch2-test-adapter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.