Npgsql.Tests.MonoIgnore.BeforeTest C# (CSharp) Method

BeforeTest() public method

public BeforeTest ( [ test ) : void
test [
return void
        public void BeforeTest([NotNull] ITest test)
        {
            if (Type.GetType("Mono.Runtime") != null)
            {
                var msg = "Ignored on mono";
                if (_ignoreText != null)
                    msg += ": " + _ignoreText;
                Assert.Ignore(msg);
            }
        }