Ty Scales

Results 7 comments of Ty Scales

The node factory is a good place to start, These will be your toplevel elements. https://github.com/mxgmn/MarkovJunior/blob/222cd2eec0d726ef1772a906532cb06036f7f453/source/Node.cs#L24-L38 Each node has a `Load` method which should help deduce what nested elements the...

https://github.com/stretchr/testify/issues/1479 mentioned using [go-diff](https://github.com/sergi/go-diff) which has seen adoption in popular libraries like [go-git](https://github.com/go-git/go-git). However, go-diff seems not very well maintained itself in recent years and the introduction of bugs has...

I tried reproducing based on your code was unable to. The following test passes for me. ```Go type Email interface{} type Mailer interface { Send(email Email, receiver string) } type...

> Colorize output displaying positive results in green and negative ones in red. Colorization has been discussed in other issues. See https://github.com/stretchr/testify/labels/enhancement%3A%20colored%20output. There are a few PRs that have been...

regarding indentation, subtests results are already displayed (and indented) in verbose mode. I think what you are really asking is to display _assertion results_ in verbose mode. as subtests work...

The bug is in [assertOpts](https://github.com/stretchr/testify/blob/master/mock/mock.go#L1185) The issue is that assertOpts is gathering a list of expected function names and actual function names using `runtime.FuncForPC` and failing the test when they...

looks like this is a duplicate of #1380 and there and #1381 has been proposed to solve it.