Adf.Test.TestProvider.IsNotPresent C# (CSharp) Метод

IsNotPresent() публичный Метод

public IsNotPresent ( TestItemType type, TestAction action ) : bool
type Adf.Core.Test.TestItemType
action Adf.Core.Test.TestAction
Результат bool
        public virtual bool IsNotPresent(TestItemType type, TestAction action)
        {
            bool present = IsActionPresent(type, action);

            var result = String.Format("[{0}] {1}", type, action);

            Assert.IsFalse(present, result);

            return !present;
        }

Same methods

TestProvider::IsNotPresent ( TestItemType type, object subject, TestAction action ) : bool