| 407 | |
| 408 | template<template<typename> class ContainerTemplate> |
| 409 | void test_emplace_front() { |
| 410 | using Container = ContainerTemplate<TestItem>; |
| 411 | Container container; |
| 412 | container.emplace_front(88); |
| 413 | |
| 414 | FL_CHECK(container.size() == 1); |
| 415 | FL_CHECK(container.front().value == 88); |
| 416 | FL_CHECK(container.front().copy_count == 0); |
| 417 | } |
| 418 | |
| 419 | template<template<typename> class ContainerTemplate> |
| 420 | void test_pop_front() { |
nothing calls this directly
no test coverage detected