public void IsnotInstanceOfType1() { int rofl = 5; tests.tests F = new tests.tests(); Assert.IsNotInstanceOfType(F.Maki(rofl), typeof(double)); }
public void IsInstanceOfType1() { int rofl = 5; tests.tests F = new tests.tests(); Assert.IsInstanceOfType(F.Maki(rofl), typeof(int)); }