UnityEngine.PlaymodeTestsRunner.TestPlatformEnumExtensions.IsFlagIncluded C# (CSharp) Method

IsFlagIncluded() private method

private IsFlagIncluded ( TestPlatform flags, TestPlatform flag ) : bool
flags TestPlatform
flag TestPlatform
return bool
        public static bool IsFlagIncluded(TestPlatform flags, TestPlatform flag)
        {
            return ((flags & flag) == flag);
        }
    }
TestPlatformEnumExtensions