namespace MusicTest
{
[TestClass]
public class MusicGig
{
[TestMethod]
public static Stream Serialize(object source)
{
IFormatter formatter = new BinaryFormatter();
Stream stream = new MemoryStream();
formatter.Serialize(stream, source);
return stream;
}
}
}
however when I try and run the test I get the following error..
UTA007: Method Serialize defined in class MusicTest.MusicGig does not have correct signature. Test method marked with the [TestMethod] attribute must be non-static, public, does not return a value and should not take any parameter. for example: public void Test.Class1.Test().
It has me confused, is it just a simple code error somewhere?
Your example code doesn't show this, which is why I'm asking: You do know that you have to mark all classes to be serialized, right? If you don't tag the class as serializable then your call to serialize will automatically be invalid.
Test method marked with the [TestMethod] attribute must be non-static, public, does not return a value and should not take any parameter. for example: public void Test.Class1.Test().
It's telling you that any method marked with the [TestMethod] attribute must be a public static void method.
Your method of "public static Stream Serialize( ... )" that you've marked with the [TestMethod] attribute isn't a public static void method. If you need this method signature, remove the [TestMethod] attribute (but don't expect the method to be run as part of the test suite).
Bookmarks