Coder Social home page Coder Social logo

Comments (6)

Suremaker avatar Suremaker commented on May 18, 2024

Hello,

I just tried it out in Visual Studio 2017 Community Edition 15.1 (26403.3).

I have created two projects:

  • xUnit Test Project (.NET Core)
  • Class Library (.NET Framework 4.6.2)

In both I added following packages (plus their dependencies):

  • LightBDD.XUnit2 2.1.0
  • xunit.runner.visualstudio 2.2.0

With that setup, when I added following code, I was able to run test from both, Resharper 2017.1.1 as well as from standard Visual Studio runner:

using LightBDD.Framework.Scenarios.Extended;
using LightBDD.XUnit2;
using Xunit.Abstractions;
[assembly: LightBddScope]

namespace MyTestProject1
{
    public class My_feature : FeatureFixture
    {
        public My_feature(ITestOutputHelper output) : base(output)
        {
        }

        [Scenario]
        public void My_scenario()
        {
            Runner.RunScenario(_ => Hello_world());
        }

        private void Hello_world()
        {
        }
    }
}

Please ensure that you have [assembly: LightBddScope] added to test project, there is no mismatch between xunit versions (as well as all referenced LightBDD packages are of 2.1.0 version).

I hope it will help.

from lightbdd.

neoistheone123 avatar neoistheone123 commented on May 18, 2024

I tried running your example...it's still not discovered in VS17 test explorer. Can you confirm Test Explorer is displaying it?

from lightbdd.

Suremaker avatar Suremaker commented on May 18, 2024

I have attached sample solution with 2 projects:
LightBDD_VS2017.zip

On my VS 2017 with spec mentioned in first response, I am able to run the tests:
vs2017_test_run

from lightbdd.

Suremaker avatar Suremaker commented on May 18, 2024

I have also updated my VS to the newest version and checked that project works:
vs2017_26403 7

I had to recompile the project however, as it looked like it did not caught up immediately that there are tests present.

from lightbdd.

neoistheone123 avatar neoistheone123 commented on May 18, 2024

OK. Those test cases appear. May be something on my end...

from lightbdd.

neoistheone123 avatar neoistheone123 commented on May 18, 2024

It's working now. Can't reproduce the problem anymore. Thanks for your input!

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.