Summary:
- Use Pex to generate tests on Open Source C# codes
- Take statistics on exceptions being thrown. Report the number of exceptions and type of exceptions that Pex exposes.
- It is expected that the values that cause the exceptions are generally shallow values.
- By shallow values we mean invalid values/parameters.
- The alternative to shallow values are "time bomb" values
- "time bomb" - earlier method call with invalid parameters does not cause immediate exception but a method call later on with valid parameters causes exception due to the earlier method call.
- The "Fix It" feature of Pex may help to determine if the exceptions are caused by shallow values or "time bombs"
- Main procedure
- Run Pex on Open Source Project
- Classify and group exceptions as either shallow or "time bomb"
- Find cases where the "Fix It" feature of Pex can fix whatever is causing the exception to be thrown.

Now it doesn't seem like much with this test but you will be able to get the correct result with this framework. I've tried other frameworks, including Pex, and .NET unit testing tools and they cannot get this simple test to work. I believe that with a little more digging around with Pex and Scurvy, I can find something that could be interesting with testing game applications using the XNA framework.