-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DebuggerShim.cs missing using statement for NSpec.Assertions #172
Comments
Thanks for the heads up. Definitely want to make sure the install process is smooth. |
There's an open issue, #161 , tracking a difference in what's reported in website docs and what assertions are actually available. When you say "on line 47", which code are you referring to? Was that created out of a template, or....? Thanks for your contribution. |
I updated the "hello world" code on the website. That one should work, but I still need to work through all the other ones and make sure they work with the latest version of NSpec |
Just inspected the sample class generated with |
@amirrajan re. updating example code, just a reminder that with FluentAssertions for basic comparisons one can go with |
Line 47 of the debuggershim.cs file.
…Sent from my iPhone
On Mar 20, 2017, at 21:01, BrainCrumbz ***@***.***> wrote:
There's an open issue, #161 , tracking a difference in what's reported in website docs and what assertions are actually available.
When you say "on line 47", which code are you referring to? Was that created out of a template, or....? Thanks for your contribution.
―
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Gosh, that was right in issue title! :O Sorry for not noticing it. Thanks! |
Installing the NSpec package into a new .Net 4.6.2 console application, I get an error on line 47 that
'bool' does not contain a definition for 'ShouldBeTrue' and no extension method 'ShouldBeTrue' accepting a first argument of type 'bool' could be found
Adding the NSpec.Assertions namespace fixes the issue.The text was updated successfully, but these errors were encountered: