Microsoft Pex is a Visual Studio add-in that generates automated white-box tests for .NET Framework applications.
2
votes
1answer
34 views
Run Pex not in Right click menu
Microsoft Visual Studio 2010
Version 10.0.40219.1 SP1Rel
Microsoft .NET Framework
Version 4.0.30319 SP1Rel
Installed Version: Ultimate
Microsoft Moles 1.0.0.0
Moles generator for Visual Studio
I ...
0
votes
0answers
20 views
How to test child class using pex
I have a generic repository
Public MustInherit Class Repository(Of T As {Class})
Add...
Update...
Various find methods...
End Class
I also have an actual repository
Public Class ...
0
votes
1answer
14 views
Contract.Ensures for an OverFlowException
I have a simple Method that returns the exponential value from a given number:
public int Exp(int num)
{
return Convert.ToInt32(System.Math.Exp(num));
}
When running Pex I get ...
0
votes
0answers
48 views
Issues to compile pex and moles in test project with .net 4.0
Tooling: VS 2010, C# 4.0, Test Project, Pex and Moles
I am facing the following issue when compiling a test project that´s using moles.
The main scenario is that
when I compile the project ...
0
votes
0answers
50 views
How to mock My.Settings.Item(“settingName”) in ASP.Net using Pex and Moles framework provided by Microsoft?
I have a call inside a method of an asp.net web service which uses data retrieved from web.config file using My.Settings.Item("settingName"). I need to mock My.Settings.Item("settingName") using Pex ...
2
votes
0answers
115 views
While running PEX getting error
First of all - awesome job on PEX !!!
We are trying to do code explorations for one of our Office Add-In project. So, first of all let me ask yo this - Is this is feasible ? In other words can PEX ...
0
votes
0answers
29 views
Using pexchoose in combination with string.Format()
I am trying to make Pex generate variables inside a loop using PexChoose.
int iterations = PexChoose.ValueFromRange("iterations", 1, 5);
for (int i=0; i<iterations; i++) {
int loopVar = ...
6
votes
2answers
323 views
Pex (not Moles) in VS 2012
I'm looking for the Pex Addin for VS 2012 (or its equivalent).
I know Moles became Fakes (http://msdn.microsoft.com/en-us/library/hh549175.aspx) which is present. I want the Pex part as input ...
2
votes
1answer
24 views
Can Pex process the interface with the parameter of a class type
i have installed Academic version of pex and roles .
I wrote the following code in Visual Studio 2010.but pex just gave a null pointer as the input. doesn't the pex support the class type? please ...
0
votes
0answers
49 views
Pex generates test data that violates Code Contract on dependency
Based on this post from Peli I am expecting that Pex will not generate stubs that will violate its contract. However, I don't get Pex to generate data that adheres to the contract. When I reproduce ...
2
votes
0answers
163 views
PEX Errors - VS2012 .NET 3.5
I get the following error when I'm trying to run PEX in VS2010.
Microsoft.Pex.Engine.Libraries.MicrosoftVisualBasicLibrary+ProjectErrorRuntimeContextAttribute+Context failed to open.
Can someone ...
0
votes
0answers
21 views
How pex handles pointers to a recursive data structure as symbolic input?
I research on symbolic execution. But I am new to PEX.
I only read papers about pex and try an example in the pex tutorial.
In 2008TAP pex paper, it said that the symbolic pointers are represented as ...
0
votes
0answers
55 views
Failure to build after adding Create Parameterized Unit Tests
I downloaded PEX & MOLES and then used Pex/Create Parameterized Unit Tests to create a test project (Infrastructure.Tests) for a project in a Prism-based solution. Just as a sanity check, built ...
1
vote
0answers
34 views
Pex4Fun - Linking Phone and Website
I have recently come across Pex4Fun, which happened to be by downloading the Windows Phone App. I have been using this for a little while and assumed that if I went to the Pex4Fun website, I would be ...
1
vote
1answer
90 views
Pex – test input generator
I have created sample method in c#.I use Pex add-in in Visual Studio 2010. I have to test my sample method with few tests.I should do this automatically not manually.I read a lot of articles about ...
0
votes
0answers
38 views
Extensionbility of PEX
I had gone thru Pex, Extensions Writer Handbook but this document is just 5 page, and not elaborative. I need some more about extensibility.
I have gone to http://pex.codeplex.com/ which extends pex ...
0
votes
0answers
126 views
Pex Throwing - System.IndexOutOfRangeException: Index was outside the bounds of the array
I was working through the pex examples for the luhn algorithm and came up with the following:
public static bool Validate(string number)
{
if (number == null)
throw new ...
3
votes
1answer
810 views
Moving away from Pex and Moles in VS 2012?
When it comes to testing I've backed into it. I'm now a huge fan, and often do something like TDD. In VS 2010 for design and regressions I've just used MSTEST. This is great - all my projects are open ...
0
votes
0answers
23 views
How to control Pex digging deep
When I try to do an Pex exploration on my source that calls to certain system files and functions. Many times I get path bounds exceeded in the system file class functions. How can I get Pex to run ...
3
votes
1answer
398 views
Unit tests fail when using Moles 0.94 and VS2012, “Hosting rules specify that the test type 'Unit Test' cannot run in the host adapter 'Moles'”
I'm trying to run some Unit Tests using Moles 0.94 and VS2012 in preparation to moving to TFS 2012.
The tests currently work fine on a TFS 2010 build server.
The first error I got was:
The host ...
0
votes
0answers
37 views
PEX: Generate more test cases
Pex seems to generate a test case for each possible state in the algorithm. Is there a way to force Pex to generate more test cases?
Simple example:
public static int Solve2(int x)
{
if (x % 2 ...
4
votes
3answers
585 views
Can I use PEX with Visual Studio 2012?
I don't see any current information about the plans to make Pex work on Visual Studio 2012.
0
votes
1answer
192 views
Many errors when “Add Moles Assembly for mscorlib”
I want to de-tour some method calls into the mscorlib assembly, so I tried to generate a Mole assembly for mscorlib. But it gives me thousands of errors.
I am using Win8+VS2010, VS2012 is installed ...
0
votes
0answers
22 views
Pex generate different PUT on the same source from command line and VS2010
On the following method :
public void synth_b6_s10_k2_rnd10(int par0, int par1, int par2, int par3, int par4, int par5, int par6, int par7)
{
int par8 = ((par0 + par1 + par2 + par3 + par4 + par5 ...
1
vote
1answer
102 views
Pex suggest a solution with Moles's error
I try to use Pex to explore the following method :
public float MultiplyFloat(float a, float j)
{
if (a * a == 2)
{
if (j == 123)
{
a = 2;
}
}
else
a = 3;
...
0
votes
1answer
60 views
Theory : starting Pex Exploration and number of PUT generated
I read many papers about pex , I'm focus on the explorations strategies . I understand that the Fitnex strategy is default used but I don't understand how Pex create the first parametrized unit test .
...
6
votes
1answer
116 views
Can Pex automatically discover type overflow / underflow conditions?
Suppose there is a method like this (C#):
public static int Add(int x, int y)
{
return x + y;
}
If the sum does not fit into the int data type it is probably an error situation which is worth a ...
1
vote
0answers
52 views
Testing Silverlight WP7 Apps with Pex - Assembly version to Silverlight 5 dll not found
as the release notes of Pex show, it is possible to test Windows Phone Apps.
Now I created a very basic Windows Phone app and wanted to test a simple method in it with Pex (Run Pex). I'm using Visual ...
0
votes
0answers
91 views
Can I use PEX with a differnet mocking framework then moles/fakes?
Currently I am using Nunit and Moq for unit testing in my C# projects. Now I want to try the automatic unit-test generation tool PEX.
I read some articles and watched the videos on channel9. As I ...
0
votes
1answer
40 views
Pex run in loop after reporting?
i run pex by command line on a class of about 2200 methods.
After 2 days of elaboration, I think to have the test suite and report html, pex finished this morning at 8.05 AM and the list file ...
2
votes
2answers
257 views
Moles not Woking with VS2010 Framework 4 Client Profile
I have build a solution in .net4 Client Profile. Now i have add the test project & tried to add Moles assembly for the my dll.it gives an error saying that
"The Command "path to the Mole.exe" ...
-1
votes
1answer
200 views
Mole System.Random class
I have the following method to test :
public float coverageJump(bool a)
{
int c = 0;
first:
c++;
Random random = new Random();
float result = random.Next(0, 100);
...
5
votes
4answers
159 views
Is Pex (and its output) suitable for an enterprise environment?
I love the idea of Pex - autogenerating unit tests through static code analysis - but the tests that are actually generated by the tool are horrible, ugly, tightly coupled to Pex modules, difficult to ...
1
vote
1answer
141 views
Is it possible to use PEX with C?
I'm new to PEX, Visual Studio and the .NET world, neverthless I
generated a few tests for C#. I have read, that PEX can also analyze
.NET programs written in any .NET language, so at the moment I am
...
0
votes
0answers
25 views
PEX cannot find testcase with LambdaExpression
I have almost the same problem as described here.
I reduced my code to the core-problem as followed::
/// Test if PEX understands linqExpressions.
[PexMethod(MaxRuns = 10000000)]
...
1
vote
2answers
335 views
Is there any best practice/guidelines available for using Code Contracts, Pex and 'Fake' framework?
Is there any best practice/guidelines available for using Code Contracts, Pex and Fake framework? Not able to find something concrete available with all 3 combined.
0
votes
1answer
83 views
UnitTesting with Moles for tightly coupled 3rd party DLL
I'm new to PEX and Moles just wondering how to UnitTest with moles something like below.
I just need a UniDynArray to test. But Creating a UniDynArray depends on the UniSession and UniSession ...
0
votes
2answers
377 views
Microsoft Moles not generating moles and behaviors assemblies
I am having some issues with my machine actually generating moles assemblies. Every tutorial I have run into has simply said the following steps:
1) Install it.
2) Right click a reference and click ...
13
votes
4answers
3k views
How to use PEX in Visual Studio 2012
VS 2010 powertools installation helped to use PEX & Moles in VS 2010.
Now with VS 2012, I understand that Moles becomes enriched as Fakes but hopefully PEX is retained, please confirm.
Also, how ...
1
vote
0answers
52 views
Is Pex Silverlight 5 compatible?
I've tried to get pex working with Silverlight 5 environment (Framework 4.0) and I was not able because Pex is allways trying to find the System references (System.Windows, System.Net, etc...) of the ...
0
votes
0answers
76 views
Test project generated from PEX and moles files fails in compilation
I have created a sample function and have run the pex for it. It runs fine. When I wanted to save the unit test project it gets saved in a .NET 4.0 project. Then on compiling I get the error
Error ...
0
votes
0answers
82 views
Is it possible to explore generic classes with constraints?
Once I try to use Pex to explore a generic class with a constraint on the type parameter I run into problems. I.e code like this:
public class StringExtensions<T>
where T : ...
0
votes
0answers
66 views
How to tell Pex to instrument everything
I'm writing a script to use Pex to test many PUT functions. I'm wondering how to tell Pex to instrument every assembly/type/method that it encounters.
I found the following in the Pex's Reference ...
5
votes
1answer
533 views
is pex really still active?
Sorry for the beginner question.
My bits are from 2010.
I found a thread that say in 2011 there will be an update.
Did I really find the last bits?
I don't want to ride another dead tool.
0
votes
1answer
136 views
What is the major difference between Pex vs MsTest?
What is the major difference between Pex vs MsTest?
when to use what?
0
votes
0answers
22 views
Pex not recognising int? as a Nullable Types converter
I am running pex version 0.94 on the following lines of code
public double Convert(object[] values)
{
if (values != null && values.Length == 2)
{
var ...
0
votes
0answers
73 views
Code coverage from VS is different from Dynamic Code Coverage from PEX exploartion
I am having a strange problem with the code coverage.
PEX has generated 10 unit tests for one method, and in the dynamic coverage report it shows the code in the method is all covered. However, ...
1
vote
0answers
141 views
How to mole the GetEnumerator method for SPJobDefinitionCollection
Can somebody help me please?
I need create a unit test using moles for this method:
public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
SPWebApplication ...
13
votes
1answer
616 views
How to generate good code coverage of floating-point logic?
I am hand-crafting new code. I'd like to make sure I leave no stone unturned.
Is there anything specific I can do beyond specifying Code Contracts to guide Pex so it produces good coverage in ...
1
vote
1answer
73 views
pex regenerate test
I have already generated pex testing classes for a particular class. However I have changed this class due to refactoring and logic changes but I do not think that the current pex generated test class ...


