Coder Social home page Coder Social logo

SkippableScenario about lightbdd HOT 4 CLOSED

lemonlion avatar lemonlion commented on June 8, 2024
SkippableScenario

from lightbdd.

Comments (4)

Suremaker avatar Suremaker commented on June 8, 2024

Hi,

https://github.com/LightBDD/LightBDD/wiki/Tests-Structure-and-Conventions contains insights on how to ignore tests on class, scenario and step level.

https://github.com/LightBDD/LightBDD/wiki/What-Is-New#lightbdd-311 contains additional insights on how to skip scenarios with InlineData (xunit)

from lightbdd.

lemonlion avatar lemonlion commented on June 8, 2024

Thanks for the links - I've read through them and I cant see anything on dynamically skipping tests at runtime. As far as I can tell the documentation talks about statically skipping tests with the Skip = "{skip reason}, or using the IgnoreScenario attribute to again statically ignore a test. What I'm looking to do is Skip based on some runtime check, eg

[SkippableScenario]
public void MyTest()
{
    if(someRuntimeCheck)
        throw new SkipTestException("This has been skipped because of X");
        
    ...{Test Code}...
}

...just like XUnit's SkippableTheory supports.

My use case is that my Component tests can run using either fakes or with real dependencies. We use header forwarding to control the outputs of fake dependencies in cases where we want to test bad responses from them. We can't do that for the real dependencies, so we want to have a config setting "UsingRealDependencies" that, when enabled, those specific tests are skipped for.

from lightbdd.

Suremaker avatar Suremaker commented on June 8, 2024

It is in first link, Steps behaviour section. StepExecution.Current.IgnoreScenario()

from lightbdd.

lemonlion avatar lemonlion commented on June 8, 2024

It is in first link, Steps behaviour section. StepExecution.Current.IgnoreScenario()

Ah, my apologies - I missed that. Thank you, that's exactly what I need.

from lightbdd.

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.