Code Monkey home page Code Monkey logo

Comments (3)

Anacardo89 avatar Anacardo89 commented on June 11, 2024

So i fiddled around with if for a bit and find that it doesn't reproduce if i don't create a new assert and just pass t everytime i call it:

image

image

So there's a workaround at least.

I looked around the t.Run and assert implementations and got confused but i think it's related to assert.t not being the same as t that is used in t.Run

image

so when Fail() calls t.Errorf(), which calls it's own Fail() it's modifying different t's?

image

image

image

But if that was the case then it wouldn't only not set c.failed, i would also not set c.parent with Fail()

As i said, i'm confused, this is confusing, imma go study interfaces now and hope that sheds some light into the matter, at least to me.

from testify.

tscales avatar tscales commented on June 11, 2024

You're basically on the right track. The top level testing.T that you pass in to assert.New and the testing.T created when invoking t.Run are different. In your first example, no assertions are made against your subtest so its reports passing. You would basically have to do something like this.

func TestNotNil(t *testing.T) {
	a := assert.New(t)
	t.Run("Test Not Nil Sub", func(t *testing.T) {
	    passed := a.NotNil(t)
                if !passed {
                    t.Fail()
                }
	})
}

but as you discovered, you can skip using assert.New all together.

from testify.

Anacardo89 avatar Anacardo89 commented on June 11, 2024

I get it, since i'm declaring a outside t.Run(), even if i use it inside, it will reply to the whole test so i have to manually fail t.Run().
a isn't failing the parent, it still IS the parent and fails itself.
Thank you, this insight was really helpful

from testify.

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.