Test2::Event::V2 - Second generation event. |
Test2::Event::V2 - Second generation event.
This is the event type that should be used instead of the Test2::Event manpage 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 the Test2::Event manpage.
facet_data()
about()
NOTE: This will return the internal hashref, not a copy.
trace()
set_trace()
.
NOTE: This will return the internal trace, not a copy.
add_amnesty({...})
NOTE: Items ARE blessed when added.
add_hub({...})
NOTE: Items ARE NOT blessed when added.
set_uuid($UUID)
set_trace($trace)
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 the Test2::Util::Facets2Legacy manpage, see that module or the Test2::Event manpage for documentation on what they do.
This object consumes the Test2::Util::ExternalMeta manpage 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/
Test2::Event::V2 - Second generation event. |