示例#1
0
		public void ParamWithArray4(Base[] p1)
		{
			Assert.NotNull(p1);
			Assert.AreEqual(3, p1.Length);
		}
示例#2
0
		public void WithInheritanceParam(Base b)
		{
			Assert.IsNotNull(b);
		}