Explorar el Código

Test for self-move removed as this is prevented by some compilers.

main
offa hace 7 años
padre
commit
ea843c33c9
Se han modificado 1 ficheros con 0 adiciones y 8 borrados
  1. +0
    -8
      test/UniqueResourceTest.cpp

+ 0
- 8
test/UniqueResourceTest.cpp Ver fichero

@@ -173,14 +173,6 @@ TEST_CASE("move-construction with copy", "[UniqueResource]")
CHECK(guard.get() == 3);
}

TEST_CASE("move assignment has no effect if same object", "[UniqueResource]")
{
REQUIRE_CALL(m, deleter(3));
auto guard = sr::make_unique_resource(Handle{3}, deleter);
guard = std::move(guard);
REQUIRE(guard.get() == 3);
}

TEST_CASE("move assignment calls deleter", "[UniqueResource]")
{
auto moveFrom = sr::make_unique_resource(Handle{3}, deleter);

Cargando…
Cancelar
Guardar