Fix a memory leak in the ViewTester
The following discussion from !729 (merged) should be addressed:
-
@graven started a discussion: (+3 comments) please avoid 'naked
new
', and be explicit about ownership, eg. why notauto viewContext = std::make_unique<EventContext>( getContext().evt(), getContext().slot() );
and on transfer of ownership eitherstd::move
or.release()
explicitly...