-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Added tests for Microsoft.VisualBasic.CompilerServices.Conversions #1… #26744
Conversation
@OzieGamma this is great to see! :) |
…sts-visual-basic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for adding these.
@dotnet-bot test NETFX x86 Release Build please |
@dotnet-bot test this please |
{ | ||
Assert.Throws<InvalidCastException>(() => Conversions.ToBoolean(str)); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: blank line.
Other than the nit, I think this is ready to merge. |
What does NIT mean? |
nit == minor issue... as in "nitpicking" https://en.m.wiktionary.org/wiki/nitpick |
If you plan to take the Microsoft.CSharp tests as a guide to what needs coverage it'd also be worth looking at some of the dynamic tests within System.Linq.Expressions which is picked up for the coverage of Microsoft.CSharp since the use of |
@JonHanna I am not familiar at all with the code/tests. That's why I am trying to pick up the easy PRs. I'll have a look and do another PR if needed. |
Oh, it would definitely want to be separate to this, probably several PRs. Or maybe there's not much worth taking as a starting point, but as Omar says there's likely stuff there that could help make some such PRs easier to plan. |
LGTM. Thanks @OzieGamma |
…tnet#1… (dotnet#26744) * Added tests for Microsoft.VisualBasic.CompilerServices.Conversions #14344 * added tests for ToBoolean fro Object
…tnet/corefx#1… (dotnet/corefx#26744) * Added tests for Microsoft.VisualBasic.CompilerServices.Conversions dotnet/corefx#14344 * added tests for ToBoolean fro Object Commit migrated from dotnet/corefx@c705032
…4344
Hi,
I am trying to get started with contributing to corefx. Is this the kind of code coverage you are looking for?
@dotnet-bot test code coverage please
NB: I'll squash this branch with more tests if I am going in the correct direction