I'm kind of new to unit testing, using Microsoft.VisualStudio.TestTools.UnitTesting;
The 0.GetType() is actually System.RuntimeType, so what kind of test do I need to write to pass Assert.IsInstanceOfType(0.GetType(), typeof(int))?
--- following up, this is my own user error... Assert.IsInstanceOfType(0, typeof(int))