Test2::Event::V2(3perl) | Perl Programmers Reference Guide | Test2::Event::V2(3perl) |
Test2::Event::V2 - Second generation event.
This is the event type that should be used instead of Test2::Event or its legacy subclasses.
use Test2::API qw/context/; sub my_tool { my $ctx = context(); my $event = $ctx->send_ev2(info => [{tag => 'NOTE', details => "This is a note"}]); $ctx->release; return $event; }
use Test2::Event::V2; my $e = Test2::Event::V2->new( trace => {frame => [$PKG, $FILE, $LINE, $SUBNAME]}, info => [{tag => 'NOTE', details => "This is a note"}], );
This class inherits from Test2::Event.
NOTE: This will return the internal hashref, not a copy.
NOTE: This will return the internal trace, not a copy.
NOTE: Items ARE blessed when added.
NOTE: Items ARE NOT blessed when added.
Note: This method does not bless/clone the trace for you. Many things will expect the trace to be blessed, so you should probably do that.
These are all imported from Test2::Util::Facets2Legacy, see that module or Test2::Event for documentation on what they do.
This object consumes Test2::Util::ExternalMeta which provides a consistent way for you to attach meta-data to instances of this class. This is useful for tools, plugins, and other extensions.
The source code repository for Test2 can be found at http://github.com/Test-More/test-more/.
Copyright 2019 Chad Granum <exodist@cpan.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/
2023-11-25 | perl v5.32.1 |