()
| 223 | |
| 224 | |
| 225 | def test_enum_to_int(): |
| 226 | m.test_enum_to_int(m.Flags.Read) |
| 227 | m.test_enum_to_int(m.ClassWithUnscopedEnum.EMode.EFirstMode) |
| 228 | m.test_enum_to_int(m.ScopedCharEnum.Positive) |
| 229 | m.test_enum_to_int(m.ScopedBoolEnum.TRUE) |
| 230 | m.test_enum_to_uint(m.Flags.Read) |
| 231 | m.test_enum_to_uint(m.ClassWithUnscopedEnum.EMode.EFirstMode) |
| 232 | m.test_enum_to_uint(m.ScopedCharEnum.Positive) |
| 233 | m.test_enum_to_uint(m.ScopedBoolEnum.TRUE) |
| 234 | m.test_enum_to_long_long(m.Flags.Read) |
| 235 | m.test_enum_to_long_long(m.ClassWithUnscopedEnum.EMode.EFirstMode) |
| 236 | m.test_enum_to_long_long(m.ScopedCharEnum.Positive) |
| 237 | m.test_enum_to_long_long(m.ScopedBoolEnum.TRUE) |
| 238 | |
| 239 | |
| 240 | def test_duplicate_enum_name(): |
nothing calls this directly
no outgoing calls
no test coverage detected