内容简介:I am excited to present to you the R1 2020 release of our mocking frameworkJustMockwhich includes improvements to the Azure Pipeline task, new integration with Visual Studio code coverage for .NET Core and implementation of ArrangeSet and AssertSet methods
I am excited to present to you the R1 2020 release of our mocking frameworkJustMockwhich includes improvements to the Azure Pipeline task, new integration with Visual Studio code coverage for .NET Core and implementation of ArrangeSet and AssertSet methods to the MockingContainer.
Without further ado let me introduce you the new features and most important fixes.
JustMock Azure Pipeline Task Supports .NET Core Tests
We know your pains and we are addressing them. The execution of JustMock unit tests targeting .NET Core in Azure pipeline had a different approach than those targeting the .NET Framework. With this release, we are unifying how the tests for both platforms are executed and now you can use only the JustMock task to execute your tests without other additional tasks, tooling or settings. The new version of the extension is already uploaded and the task will be automatically updated in your pipeline. If you would like to try it here is the link to the marketplace..
JustMock Azure Pipeline Task Supports VS 2019 as a Test Platform version
Another pain you wrote us frequently about is the lack of support for Visual Studio 2019 test platform. With this release we are providing this option for you. In addition to that we have fixed an issue with failing tests when the “Installed by Tools Installer” option is selected for test platform version. With this we have implemented and fixed all known issues and requests related to the test platform version.
Integration with VS Code Coverage for .NET Core
Many of our clients are using Visual Studio Enterprise and they love the build in code coverage. Actually, this is the tool that JustMock is most frequently integrated with. However, there was a limitation. The integration could be used only for projects targeting .NET Framework. With this new release we are introducing support for projects targeting .NET Core as well.
ArrangeSet and AssertSet Methods for MockingContainer
Until now it was difficult and additional efforts were required to arrange and assert the set operation of a property when you used our implementation of an IoC container named MockingContainer. This is why we implemented the ArrangeSet and AssertSet method for the MockingContainer. The API is now similar to the one for mocking normal property set operation.
[TestMethod]
public
void
ShouldAssertAllContainerArrangments()
{
// Arrange
var container =
new
MockingContainer<ClassUnderTest>();
container.Arrange<ISecondDependency>(
secondDep => secondDep.GetString()).MustBeCalled();
container.ArrangeSet<IThirdDependency>(
thirdDep => thirdDep.IntValue = Arg.AnyInt).MustBeCalled();
// Act
var actualString = container.Instance.StringMethod();
container.Instance.SetIntMethod(10);
// Assert
container.AssertSet<IThirdDependency>(thirdDep => thirdDep.IntValue = 10);
container.AssertAll();
}
Visual Studio Debugger Arrowhead Pointer is Messed when Profiler is Enabled with .NET Core
This issue was very unpleasant. While debugging the code you have mocked in a .NET Core project the debugger arrowhead pointer was at a different line of the code than the actual one. After thorough research of what is causing the issue, we found out that the underlining problem is a bug in the .NET Core CLR. Long story short, Microsoft provided a fix to this bug. If you would like to take advantage of this fix you could upgrade your application to .NET Core 3.1 version, which includes the fix.
Try It Out and Share Your Feedback
The R1 2020 release is already available for download incustomers’ accounts. If you are new to Telerik JustMock, you can learn more about it via theproduct page. It comes with a30-day free trial, giving you some time to explore the capabilities of JustMock.
Be sure to sign up for the Telerik R1 2020 release webinar on Tuesday, January 21st at 11:00 AM ET for a deeper look at all the goodness in the release, where our developer experts will go over everything in detail.
Feel free to drop us a comment below sharing your thoughts. Or visit ourFeedback Portaland let us know if you have any suggestions or if you need any particular features.
You can also check ourRelease Historypage for a complete list of the included improvements.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
产品经理修炼之道
费杰 / 机械工业出版社华章公司 / 2012-7-30 / 59.00元
本书由资深产品经理、中国最大的产品经理沙龙Pmcaff创始人费杰亲自执笔,微软、腾讯、百度、新浪、搜狐、奇虎、阿里云、Evernote等国内外20余家大型互联网企业资深产品经理和技术专家联袂推荐。用系统化的方法论和丰富的实战案例解读了优秀产品经理所必须修炼的产品规划能力、产品设计能力、产品执行能力,以及思考、分析和解决问题的能力和方法,旨在为互联网产品经理打造核心竞争力提供实践指导。 全书一......一起来看看 《产品经理修炼之道》 这本书的介绍吧!