Stories recently tagged with 'Pex'

Code Contracts in .NET 4(www.dotnet-tv.com)

submitted by martinigmartinig(568) 4 months, 15 days ago

This video explains code contracts in .NET and how they can be used to improve data integrity, consistency, and development velocity with minimal impact to the size of the source base and even to production performance. read more...

add a comment |category: |Views: 8

tags: another

Code Contracts in .NET 4(www.dotnet-tv.com)

submitted by martinigmartinig(568) 4 months, 15 days ago

This video explains code contracts in .NET and how they can be used to improve data integrity, consistency, and development velocity with minimal impact to the size of the source base and even to production performance. read more...

add a comment |category: |Views: 8

tags: another

Verifying code and testing with Pex(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 4 months ago

Earlier this week, Katrien posted an update on the list of Belgian TechDays 2009 speakers. This post featured a summary on all sessions, of which one was titled “Pex – Automated White Box Testing for .NET”. Here’s the abstract: “Pex is an automated white box testing tool for .NET. Pex systematically tries to cover every reachable branch in a program by monitoring execution traces, and using a constraint solver to produce new test cases with different behavior. Pex can be applied to any existing .NET assembly without any pre-existing test suite. Pex will try to find counterexamples for all assertion statements in the code. Pex can be guided by hand-written parameterized unit tests, which are API usage scenarios with assertions. The result of the analysis is a test suite which can be persisted as unit tests in source code. The generated unit tests integrate with Visual Studio Team Test as well as other test frameworks. By construction, Pex produces small unit test suites with high code and assertion coverage, and reported failures always come with a test case that reproduces the issue. At Microsoft, this technique has proven highly effective in testing even an extremely well-tested component.” After reading the second sentence in this abstract, I was thinking: “SWEET! Let’s try!”. So here goes… read more...

add a comment |category: |Views: 249

tags: another

Microsoft Pex - 0.5 Released(blog.benhall.me.uk)

submitted by ImplicitGeekImplicitGeek(260) 4 years ago

Great post into the new Microsoft Pex Unit Testing framework. Demostrates how what gets executed, the results and some on the initial cool features. read more...

add a comment |category: |Views: 480

tags: another

Automated Exploratory Testing(research.microsoft.com)

submitted by fredrikfredrik(250) 4 years ago

Pex (Program EXploration) is an intelligent assistant to the programmer. From a parameterized unit test, it automatically produces a traditional unit test suite with high code coverage. In addition, it suggests to the programmer how to fix the bugs. read more...

add a comment |category: |Views: 4

tags: another