Tag Archives: MSTest

Unit Test vs Code Coverage vs Use Case


I’m going philosophical on this one. One of the myriad duties I’ve performed in my positions as a consultant is to implement unit tests on some critical part of the code. Realistically all of the code is critical, otherwise why … Continue reading

Posted in Game Development, Math, Programming | Tagged , , , , , , , , | Leave a comment

MS test Error UTA051


UTA051: Invalid use of DeploymentItem attribute. Method YourAssembly.YourNamespace.YourMethod is not marked as TestMethod. To solve this add this attribute to your method. [TestMethod()] public void YourMethod(){} … and that’s it.. really simple.

Posted in Programming | Tagged , | Leave a comment