Tagged Questions

Pex - Automated white-box Test Generation for .NET

learn more… | top users | synonyms

56
votes
1answer
1k views

How to tell Pex not to stub an abstract class that has concrete implementations

I'm trying to use Pex to test some code. I have an abstract class with four concrete implementations. I have created factory methods for each of the four concrete types. I had also created one for ...
23
votes
2answers
699 views

Contract.Requires throwing pex errors [closed]

Possible Duplicate: How Do You Configure Pex to Respect Code Contracts? Currently, when I run a pex exploration, the code contracts I created in my classes are being treated as errors in ...
19
votes
2answers
1k views

Is Pex (Test generation) really usefull tool?

Yes, it is possible to generate tests on boundary values for functions like "Sum" or "Divide". Pex is a good tool here. But more often we create tests on business behaviour. Let's consider example ...
18
votes
5answers
1k views

Pex users: what are your Impressions of Pex and Automated Exploratory Testing in general?

Those of you who have used Pex, what do you think its advantages and disadvantages are of Pex as a tool? Also, what do you think are the advantages and disadvantages of "Automated Exploratory ...
9
votes
1answer
1k views

Microsoft PEX with NUnit

I am thinking of using Microsoft PEX tools for my project, but I would much rather use NUnit instead of MSUnit. Apparently, PEX Extensions project was specifically created for that, but it has no ...
6
votes
1answer
220 views

Pex and F# in Visual Studio 2010 Ultimate

I have been trying using Pex in a F# project but I have faced several issues on which I would appreciate some help: Visual Studio Pex addin worked for half an hour and not for complex project ...
6
votes
1answer
344 views

Why Pex is not massive [closed]

Hi there: I was looking at a few videos, etc and I just cant help but wonder why Pex usage seems to be so low? Are there any problems that are not obvious, or is it just a licence issue?
6
votes
2answers
414 views

How does Pex work

At a low level, how does Pex work? Thanks
4
votes
3answers
328 views

How Do You Configure Pex to Respect Code Contracts?

Given the following example code, how can I configure Pex to respect my Code Contracts? public static IEnumerable<User> Administrators(this UserGroup userGroup) { ...
4
votes
3answers
665 views

Is Pex and Moles project still active?

They used to release a two new versions a month but since October 2010 they haven't released a new one. I've found this. But the fact they have closed its support forum on MSDN makes me suspect the ...
4
votes
0answers
300 views

Can Tests be written in 3.5 MsTest Unit Test assemblies?

Hi: I've enjoyed playing around with Pex and Moles...now it's time to use it in earnest to cover an legacy app as much as possible. We've started by converted to .NET 3.5 (the client can't yet host ...
3
votes
1answer
92 views

Running Unit Test with Microsoft Moles Host under Visual Studio 2010 Remote Test Agent in TFS Build

We would like to have our TFS automated CI build and test process use a remote test agent to run our tests separate from our build agent. On normal unit tests that do not use moles or moles host, we ...
3
votes
1answer
56 views

Why do I get indexoutofboundsexception when iterating PropertyInfo using pex?

I have the following method: public static T Deserialize<T>(vRS rs) where T : class, new() { T o = new T(); Type tp = typeof(T); foreach (PropertyInfo pi in tp.GetProperties()) { ...
3
votes
0answers
63 views

Why would running Pex Explorations result in ignoring a previously Pex-generated test method?

Code being tested: public class TestReader { public string Content { get; private set; } public void LoadFile(string fileName) { var content = FileSystem.ReadAllText(fileName); ...
3
votes
4answers
440 views

C# - What does “\0” equate to?

I am playing with Pex and one of the parameters it passes into my method is "\0". What does that mean? My guess is an empty string ("") based on the content of my method. However, if it is the same ...
3
votes
2answers
93 views

Pex and “\0” what is the correct name for this?

I am using Pex and keeps throwing "\0" at my string parameters. Through a little testing I found that it is some sort of end of string? I am looking for the official name for this to learn more about ...
3
votes
2answers
509 views

How to use PEX with NUnit tests in VS 2010?

I am aware that the current release of PEX allows use with the NUnit framework. The thing is I can't configure it to use the NUnit framework. In the Options -> PEX: What Exactly do i have to put in ...
3
votes
3answers
346 views

Open Source Projects that make use of Pex

I am interested in finding out more about the use of Pex, the testing framework for .NET. I am aware that the current version of Pex is only 0.11, but is anyone aware of an open source project that ...
2
votes
1answer
59 views

How to tell PEX to use the mock object when the concrete object is a dependency, and then auto-generate test cases?

I am writing client-side components in a provided framework, and need to be able to unit test my components. The components are written using MVP (Model-View-Presenter) pattern, I want to use PEX to ...
2
votes
1answer
124 views

Pex & Moles - Dependencey Injection

I'm new to Pex and Moles. I am trying to run Pex on my code but I am using Constructor injection. Is there a way of instructing Pex on how to inject the constructors? Edit public ...
2
votes
0answers
88 views

Pex error during the team build ( TFS 2010 Build )

We have been using pex and moles for unitest with TFS2010. Lately the pex and moles started to crash randomly during the test run. We couldn't reproduce this error on developer machine. Crash only ...
2
votes
1answer
79 views

Is there any way to simplify the path conditions

For example, in the code below the path condition will be x>0 && x+1>0. But since x>0 implies x+1>0, is there any way in z3 or pex API to get only x>0 and not both. if(x>0) ...
2
votes
2answers
354 views

Moles and Refactoring code

We are embarking on a new greenfield project in my company and it has been decided that we will use Microsoft's Moles framework for ALL our mocking in unit tests. My manager ideally does not want to ...
2
votes
1answer
180 views

How do you use Moles to mole DbContext from querying the database in EntityFramework 4.1?

I am using Entity Framework 4.1 for database access and would like to Unit Test the following code: // Get all the entities including children using (MyContext context = new MyContext()) { return ...
2
votes
2answers
174 views

How to divert “non public” method in public class moles

I have a public method that uses a local private method to get data from the Db. private string SomeMethod(string) { ... Doing some operations ... string data = GetDBData(string); Doing some ...
2
votes
1answer
138 views

How do you remove Moles from a project? (Moles 0.94.51023.0 / VS2010 SP1)

The Problem Not only can I not use Moles see this post I can't get rid of them either (much like my backyard). I'm sure I'm missing something [not] obvious [to me]. I see I'm not the only person ...
2
votes
2answers
126 views

Is there a way in Moles to mole/mock a method with the params keyword?

Is there a way to mole/stub/mock a method with the params keyword? Here is an example of the Method I am trying to mole/stub: Void SomeMethod(bool finalizer,params string[] parameters)... I have ...
2
votes
1answer
205 views

Pex and Moles For Commerical Purposes?

Can Pex & Moles be used for Commercial Purposes. If not, anyone has idea about when it will be for Commercial purpose. I would like to know is it worth spending effort in a real business ...
2
votes
2answers
79 views

Pex: For String.IsNullOrEmpty Pex generates only two test methods

I have a simple method with a single condition like this. if (String.IsNullOrEmpty(FirstName)) { success = false; } return success; When I run Pex it generates only one test case which assigns ...
2
votes
1answer
151 views

Pex and previously written tests

I am working a project with many NUnit tests, that were already written long time ago. What is the best way to run Pex on these tests and extend them? I try to run Pex on the methods that are being ...
2
votes
2answers
231 views

Reading from web.config while running Pex explorations

I've just started using Pex to generate parameterized unit-tests for my project. However, when I let Pex run its explorations, my code crashes because it cannot read from the web.config ...
1
vote
1answer
48 views

Does Pex support windows phone 7 unit testing?

As I known, Pex supports the following two kinds of framework settings PexAssemblyInfo.cs: // Microsoft.Pex.Framework.Settings -- 1 [assembly: PexAssemblySettings(TestFramework = ...
1
vote
2answers
38 views

How to define a set of input parameters in Pex?

Say I have MyClass with 100s of fields. If I use an object of MyClass as an input param, Pex would simply choke trying to generate all possible combinations (mine runs into 1000s of paths even on a ...
1
vote
0answers
40 views

Testing Private Method using Pex

I want to use Pex and Moles in my project.I want to test Private method using Pex. Is anyone used Pex to test private method? If we can't test directly, Is there any workaround to test Private ...
1
vote
1answer
39 views

Pex report PexAssumeFailedException in factory method

everyone! I am a beginner in unit testing. I'm now testing a project with visual studio 2010 and Pex, and I encountered the following problem. When I run the Pex Exploration, and Pex tell me "could ...
1
vote
1answer
81 views

How do I get Pex to handle function using DateTime.Now or File.Exists

I'm new to Pex and I can't see how to use it with machine specific routines like DateTime.Now and File.Exists(). I have a function for displaying a cut-off DateTime with the time zone offset. public ...
1
vote
2answers
77 views

Pex and Code Contracts

Below is the code sample from the Pex Documentation pexandcontracts.pdf http://research.microsoft.com/en-us/projects/pex/pexandcontracts.pdf. I realise that this is not a pex specific question, rather ...
1
vote
0answers
57 views

Does Microsoft Moles support .NET Compact Framework?

I am currently working on unit tests for a WinCE-based application which uses .NET Compact Framework 2.0. I could like to know, does Moles Framework support .NET Compact Framework 2.0? If not, could ...
1
vote
0answers
72 views

Why is Method DateTimeParse.TryParse(String, DateTimeFormatInfo, DateTimeStyles, DateTime&) Uninstrumented?

I've been trying to get some of the PEX samples working, but anything with DateTime.TryParse/DateTime.Parse produces dissapointing results. Pex does not come up with any interesting parameters, and if ...
1
vote
0answers
125 views

Why Moles picks up SharePoint.Behaviors for .NET v4.0 when all the rest is v3.5?

I have a ClassLibrary accessing SharePoint 2010 object model as part of a bigger SP 2010 Sandbox solution. All projects target .NET v3.5 (not client profile). Then there's a ASP.NET WebApplication ...
1
vote
0answers
63 views

Moles Generation - Same Class name in Different Name space

This question was originally asked here: http://social.msdn.microsoft.com/Forums/en-US/pex/thread/60972f1f-735a-474e-be84-40cda8006ffa?prof=required. I've recently installed Moles for VS2010. I have ...
1
vote
0answers
52 views

The selected type is not visible and cannot be run by Pex

I'm running Pex 1.4.40602.0. When I try to run Pex on an internal" type I get a "The selected type is not visible and cannot be run by Pex." error dialog. I have tried to place the following ...
1
vote
0answers
234 views

The process cannot access the file because it is being used by another process

I ask this Question because it is Moles specific. Running VS2010 on Windows 7 64bit the VsHost of moles stays in the task manager, causing this message: Unable to copy file The process cannot access ...
1
vote
1answer
146 views

SharePoint Behaved Types - Run Pex Explorations error (System.Moles 4.0.0.0)

I was following a tutorial on pex and moles (http://research.microsoft.com/en-us/projects/pex/pexsharepoint.pdf). Its a year old, but everything worked fine until I changed Mole types to Behaved ...
1
vote
0answers
65 views

Moles 0.94 installation can't find pex.powertool.x64.msi

I'm trying to install the latest Moles/Pex 0.94, but the install is unable to uninstall the previous version because it cannot locate pex.powertool.x64.msi. I searched for this file on multiple ...
1
vote
1answer
391 views

Moles/VS2010 SP1 Issue - Error 32, exit code -1002 building mstest with Moles 0.94.51023.0

Update 6/20/2011 I can only build the test project once or twice before getting this error. Moles is unusable for me until this is resolved. Deleting obj/bin and closing/reopening visual studio isn't ...
1
vote
0answers
24 views

Pex and TestCategory

Is there any way to get Pex to decorate the test methods that it generates with the TestCategory attribute? I've scoured the documentation (and all public classes) and don't see anything. I know ...
1
vote
1answer
161 views

HELP. Pex killed my projects and GAC

Really not sure what's happened here, but I was playing with pex and moles in a project I then got pex to generate tests for the web client which is MVC. This caused all sorts of build problems in the ...
1
vote
0answers
46 views

Can Pex instrumentation cause code to change its effect?

I've got a simple JSON lexer class; it takes a string and generates an IJSONValue; the IJSONValue has a ToJSONString method that returns a valid JSON string. The code for that, of course, is quite ...
1
vote
4answers
160 views

Is allowing the possibility of NullReferenceExceptions to occur a Bad Thing?

I'm playing with Pex and Moles and after running Pex found that nearly all the tests that Pex said failed were because NullReferenceExceptions were "allowed". Reading the Pex documentation, I came ...

1 2 3