Check and run the code to see how the test will pass
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
namespace ExceptionHandling
{
public class ObjectHelper
{
public static T SerializeObject<T>(T obj)
{
throw new MethodNotImplementedException();
}
}
}
Enter to Rename, Shift+Enter to Preview
1
using Microsoft.VisualStudio.TestTools.UnitTesting;
Enter to Rename, Shift+Enter to Preview
1
using System;
Enter to Rename, Shift+Enter to Preview