| Test2::Event::V2(3) | Perl Programmers Reference Guide | Test2::Event::V2(3) | 
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 <https://github.com/Test-More/test-more/>.
Copyright 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 <https://dev.perl.org/licenses/>
| 2025-06-24 | perl v5.42.0 |