From 232a02bf187dac83405f9cb021c075551697f689 Mon Sep 17 00:00:00 2001 From: esposimo Date: Thu, 28 Mar 2024 22:39:37 +0100 Subject: [PATCH] add metadata table --- src/see_cache.php | 34 ++ src/sql/01_2024_seq.sql | 1 + src/sql/02_2024_create_table.sql | 11 + src/sql/03_2024_create_partitions.sql | 375 ++++++++++++++++++ .../events/resp/activatePaymentNotice.php | 8 +- .../paymentlist/req/activatePaymentNotice.php | 1 + .../paymentlist/req/nodoInviaCarrelloRPT.php | 6 +- .../resp/activatePaymentNotice.php | 19 +- src/tests/.phpunit.result.cache | 2 +- 9 files changed, 448 insertions(+), 9 deletions(-) diff --git a/src/see_cache.php b/src/see_cache.php index d6bab8b..2b7e75f 100644 --- a/src/see_cache.php +++ b/src/see_cache.php @@ -1,6 +1,40 @@ 'tcp', + 'host' => REDIS_HOST, + 'port' => REDIS_PORT + ]; + + +function randomString($n = 15) +{ + $string = ''; + for($i=0;$i<$n;$i++) + { + $string .= rand(0, 9); + } + return $string; +} + + +$redis_cache = new \pagopa\crawler\RedisCache($connection); + +foreach($redis_cache->getAllKeys() as $key) +{ + print_r($redis_cache->getValue($key)); +} + + + +die(); $mem = new Memcached(); $connect = $mem->addServer('172.17.0.3',11211); diff --git a/src/sql/01_2024_seq.sql b/src/sql/01_2024_seq.sql index 707ceea..1be8dc2 100644 --- a/src/sql/01_2024_seq.sql +++ b/src/sql/01_2024_seq.sql @@ -2,5 +2,6 @@ create sequence public.transaction_re_2024_id_seq; create sequence public.transaction_2024_id_seq; create sequence public.transaction_2024_details_id_seq; create sequence public.transaction_2024_events_id_seq; +create sequence public.metadata_2024_id_seq; diff --git a/src/sql/02_2024_create_table.sql b/src/sql/02_2024_create_table.sql index 56f9ea8..cdf24b1 100644 --- a/src/sql/02_2024_create_table.sql +++ b/src/sql/02_2024_create_table.sql @@ -74,5 +74,16 @@ create table if not exists public.transaction_re_2024 ( ) PARTITION BY RANGE (date_event); +create table if not exists public.metadata_2024 ( + id bigint default nextval('public.metadata_2024_id_seq'::regclass) not null, + date_event date not null, + fk_payment bigint not null, + fk_transfer bigint not null, + meta_key varchar(140) not null, + meta_value varchar(140) not null, + constraint "METADATA_2024_pk" primary key (date_event, id) +) +PARTITION BY RANGE (date_event); + diff --git a/src/sql/03_2024_create_partitions.sql b/src/sql/03_2024_create_partitions.sql index ec7354e..a3dc4e5 100644 --- a/src/sql/03_2024_create_partitions.sql +++ b/src/sql/03_2024_create_partitions.sql @@ -1124,3 +1124,378 @@ create table if not exists public.transaction_re_2024_12_28 partition of public. create table if not exists public.transaction_re_2024_12_29 partition of public.transaction_re_2024 FOR VALUES FROM ('2024-12-29') TO ('2024-12-30'); create table if not exists public.transaction_re_2024_12_30 partition of public.transaction_re_2024 FOR VALUES FROM ('2024-12-30') TO ('2024-12-31'); create table if not exists public.transaction_re_2024_12_31 partition of public.transaction_re_2024 FOR VALUES FROM ('2024-12-31') TO ('2025-01-01'); + + + + + + + + + +create table if not exists public.metadata_2024_01_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-01') TO ('2024-01-02'); +create table if not exists public.metadata_2024_01_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-02') TO ('2024-01-03'); +create table if not exists public.metadata_2024_01_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-03') TO ('2024-01-04'); +create table if not exists public.metadata_2024_01_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-04') TO ('2024-01-05'); +create table if not exists public.metadata_2024_01_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-05') TO ('2024-01-06'); +create table if not exists public.metadata_2024_01_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-06') TO ('2024-01-07'); +create table if not exists public.metadata_2024_01_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-07') TO ('2024-01-08'); +create table if not exists public.metadata_2024_01_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-08') TO ('2024-01-09'); +create table if not exists public.metadata_2024_01_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-09') TO ('2024-01-10'); +create table if not exists public.metadata_2024_01_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-10') TO ('2024-01-11'); +create table if not exists public.metadata_2024_01_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-11') TO ('2024-01-12'); +create table if not exists public.metadata_2024_01_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-12') TO ('2024-01-13'); +create table if not exists public.metadata_2024_01_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-13') TO ('2024-01-14'); +create table if not exists public.metadata_2024_01_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-14') TO ('2024-01-15'); +create table if not exists public.metadata_2024_01_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-15') TO ('2024-01-16'); +create table if not exists public.metadata_2024_01_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-16') TO ('2024-01-17'); +create table if not exists public.metadata_2024_01_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-17') TO ('2024-01-18'); +create table if not exists public.metadata_2024_01_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-18') TO ('2024-01-19'); +create table if not exists public.metadata_2024_01_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-19') TO ('2024-01-20'); +create table if not exists public.metadata_2024_01_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-20') TO ('2024-01-21'); +create table if not exists public.metadata_2024_01_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-21') TO ('2024-01-22'); +create table if not exists public.metadata_2024_01_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-22') TO ('2024-01-23'); +create table if not exists public.metadata_2024_01_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-23') TO ('2024-01-24'); +create table if not exists public.metadata_2024_01_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-24') TO ('2024-01-25'); +create table if not exists public.metadata_2024_01_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-25') TO ('2024-01-26'); +create table if not exists public.metadata_2024_01_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-26') TO ('2024-01-27'); +create table if not exists public.metadata_2024_01_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-27') TO ('2024-01-28'); +create table if not exists public.metadata_2024_01_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-28') TO ('2024-01-29'); +create table if not exists public.metadata_2024_01_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-29') TO ('2024-01-30'); +create table if not exists public.metadata_2024_01_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-30') TO ('2024-01-31'); +create table if not exists public.metadata_2024_01_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-01-31') TO ('2024-02-01'); +create table if not exists public.metadata_2024_02_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-01') TO ('2024-02-02'); +create table if not exists public.metadata_2024_02_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-02') TO ('2024-02-03'); +create table if not exists public.metadata_2024_02_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-03') TO ('2024-02-04'); +create table if not exists public.metadata_2024_02_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-04') TO ('2024-02-05'); +create table if not exists public.metadata_2024_02_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-05') TO ('2024-02-06'); +create table if not exists public.metadata_2024_02_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-06') TO ('2024-02-07'); +create table if not exists public.metadata_2024_02_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-07') TO ('2024-02-08'); +create table if not exists public.metadata_2024_02_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-08') TO ('2024-02-09'); +create table if not exists public.metadata_2024_02_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-09') TO ('2024-02-10'); +create table if not exists public.metadata_2024_02_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-10') TO ('2024-02-11'); +create table if not exists public.metadata_2024_02_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-11') TO ('2024-02-12'); +create table if not exists public.metadata_2024_02_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-12') TO ('2024-02-13'); +create table if not exists public.metadata_2024_02_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-13') TO ('2024-02-14'); +create table if not exists public.metadata_2024_02_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-14') TO ('2024-02-15'); +create table if not exists public.metadata_2024_02_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-15') TO ('2024-02-16'); +create table if not exists public.metadata_2024_02_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-16') TO ('2024-02-17'); +create table if not exists public.metadata_2024_02_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-17') TO ('2024-02-18'); +create table if not exists public.metadata_2024_02_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-18') TO ('2024-02-19'); +create table if not exists public.metadata_2024_02_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-19') TO ('2024-02-20'); +create table if not exists public.metadata_2024_02_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-20') TO ('2024-02-21'); +create table if not exists public.metadata_2024_02_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-21') TO ('2024-02-22'); +create table if not exists public.metadata_2024_02_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-22') TO ('2024-02-23'); +create table if not exists public.metadata_2024_02_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-23') TO ('2024-02-24'); +create table if not exists public.metadata_2024_02_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-24') TO ('2024-02-25'); +create table if not exists public.metadata_2024_02_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-25') TO ('2024-02-26'); +create table if not exists public.metadata_2024_02_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-26') TO ('2024-02-27'); +create table if not exists public.metadata_2024_02_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-27') TO ('2024-02-28'); +create table if not exists public.metadata_2024_02_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-28') TO ('2024-02-29'); +create table if not exists public.metadata_2024_02_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-02-29') TO ('2024-03-01'); +create table if not exists public.metadata_2024_03_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-01') TO ('2024-03-02'); +create table if not exists public.metadata_2024_03_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-02') TO ('2024-03-03'); +create table if not exists public.metadata_2024_03_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-03') TO ('2024-03-04'); +create table if not exists public.metadata_2024_03_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-04') TO ('2024-03-05'); +create table if not exists public.metadata_2024_03_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-05') TO ('2024-03-06'); +create table if not exists public.metadata_2024_03_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-06') TO ('2024-03-07'); +create table if not exists public.metadata_2024_03_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-07') TO ('2024-03-08'); +create table if not exists public.metadata_2024_03_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-08') TO ('2024-03-09'); +create table if not exists public.metadata_2024_03_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-09') TO ('2024-03-10'); +create table if not exists public.metadata_2024_03_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-10') TO ('2024-03-11'); +create table if not exists public.metadata_2024_03_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-11') TO ('2024-03-12'); +create table if not exists public.metadata_2024_03_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-12') TO ('2024-03-13'); +create table if not exists public.metadata_2024_03_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-13') TO ('2024-03-14'); +create table if not exists public.metadata_2024_03_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-14') TO ('2024-03-15'); +create table if not exists public.metadata_2024_03_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-15') TO ('2024-03-16'); +create table if not exists public.metadata_2024_03_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-16') TO ('2024-03-17'); +create table if not exists public.metadata_2024_03_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-17') TO ('2024-03-18'); +create table if not exists public.metadata_2024_03_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-18') TO ('2024-03-19'); +create table if not exists public.metadata_2024_03_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-19') TO ('2024-03-20'); +create table if not exists public.metadata_2024_03_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-20') TO ('2024-03-21'); +create table if not exists public.metadata_2024_03_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-21') TO ('2024-03-22'); +create table if not exists public.metadata_2024_03_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-22') TO ('2024-03-23'); +create table if not exists public.metadata_2024_03_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-23') TO ('2024-03-24'); +create table if not exists public.metadata_2024_03_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-24') TO ('2024-03-25'); +create table if not exists public.metadata_2024_03_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-25') TO ('2024-03-26'); +create table if not exists public.metadata_2024_03_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-26') TO ('2024-03-27'); +create table if not exists public.metadata_2024_03_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-27') TO ('2024-03-28'); +create table if not exists public.metadata_2024_03_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-28') TO ('2024-03-29'); +create table if not exists public.metadata_2024_03_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-29') TO ('2024-03-30'); +create table if not exists public.metadata_2024_03_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-30') TO ('2024-03-31'); +create table if not exists public.metadata_2024_03_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-03-31') TO ('2024-04-01'); +create table if not exists public.metadata_2024_04_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-01') TO ('2024-04-02'); +create table if not exists public.metadata_2024_04_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-02') TO ('2024-04-03'); +create table if not exists public.metadata_2024_04_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-03') TO ('2024-04-04'); +create table if not exists public.metadata_2024_04_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-04') TO ('2024-04-05'); +create table if not exists public.metadata_2024_04_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-05') TO ('2024-04-06'); +create table if not exists public.metadata_2024_04_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-06') TO ('2024-04-07'); +create table if not exists public.metadata_2024_04_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-07') TO ('2024-04-08'); +create table if not exists public.metadata_2024_04_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-08') TO ('2024-04-09'); +create table if not exists public.metadata_2024_04_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-09') TO ('2024-04-10'); +create table if not exists public.metadata_2024_04_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-10') TO ('2024-04-11'); +create table if not exists public.metadata_2024_04_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-11') TO ('2024-04-12'); +create table if not exists public.metadata_2024_04_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-12') TO ('2024-04-13'); +create table if not exists public.metadata_2024_04_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-13') TO ('2024-04-14'); +create table if not exists public.metadata_2024_04_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-14') TO ('2024-04-15'); +create table if not exists public.metadata_2024_04_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-15') TO ('2024-04-16'); +create table if not exists public.metadata_2024_04_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-16') TO ('2024-04-17'); +create table if not exists public.metadata_2024_04_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-17') TO ('2024-04-18'); +create table if not exists public.metadata_2024_04_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-18') TO ('2024-04-19'); +create table if not exists public.metadata_2024_04_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-19') TO ('2024-04-20'); +create table if not exists public.metadata_2024_04_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-20') TO ('2024-04-21'); +create table if not exists public.metadata_2024_04_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-21') TO ('2024-04-22'); +create table if not exists public.metadata_2024_04_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-22') TO ('2024-04-23'); +create table if not exists public.metadata_2024_04_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-23') TO ('2024-04-24'); +create table if not exists public.metadata_2024_04_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-24') TO ('2024-04-25'); +create table if not exists public.metadata_2024_04_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-25') TO ('2024-04-26'); +create table if not exists public.metadata_2024_04_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-26') TO ('2024-04-27'); +create table if not exists public.metadata_2024_04_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-27') TO ('2024-04-28'); +create table if not exists public.metadata_2024_04_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-28') TO ('2024-04-29'); +create table if not exists public.metadata_2024_04_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-29') TO ('2024-04-30'); +create table if not exists public.metadata_2024_04_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-04-30') TO ('2024-05-01'); +create table if not exists public.metadata_2024_05_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-01') TO ('2024-05-02'); +create table if not exists public.metadata_2024_05_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-02') TO ('2024-05-03'); +create table if not exists public.metadata_2024_05_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-03') TO ('2024-05-04'); +create table if not exists public.metadata_2024_05_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-04') TO ('2024-05-05'); +create table if not exists public.metadata_2024_05_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-05') TO ('2024-05-06'); +create table if not exists public.metadata_2024_05_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-06') TO ('2024-05-07'); +create table if not exists public.metadata_2024_05_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-07') TO ('2024-05-08'); +create table if not exists public.metadata_2024_05_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-08') TO ('2024-05-09'); +create table if not exists public.metadata_2024_05_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-09') TO ('2024-05-10'); +create table if not exists public.metadata_2024_05_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-10') TO ('2024-05-11'); +create table if not exists public.metadata_2024_05_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-11') TO ('2024-05-12'); +create table if not exists public.metadata_2024_05_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-12') TO ('2024-05-13'); +create table if not exists public.metadata_2024_05_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-13') TO ('2024-05-14'); +create table if not exists public.metadata_2024_05_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-14') TO ('2024-05-15'); +create table if not exists public.metadata_2024_05_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-15') TO ('2024-05-16'); +create table if not exists public.metadata_2024_05_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-16') TO ('2024-05-17'); +create table if not exists public.metadata_2024_05_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-17') TO ('2024-05-18'); +create table if not exists public.metadata_2024_05_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-18') TO ('2024-05-19'); +create table if not exists public.metadata_2024_05_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-19') TO ('2024-05-20'); +create table if not exists public.metadata_2024_05_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-20') TO ('2024-05-21'); +create table if not exists public.metadata_2024_05_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-21') TO ('2024-05-22'); +create table if not exists public.metadata_2024_05_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-22') TO ('2024-05-23'); +create table if not exists public.metadata_2024_05_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-23') TO ('2024-05-24'); +create table if not exists public.metadata_2024_05_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-24') TO ('2024-05-25'); +create table if not exists public.metadata_2024_05_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-25') TO ('2024-05-26'); +create table if not exists public.metadata_2024_05_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-26') TO ('2024-05-27'); +create table if not exists public.metadata_2024_05_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-27') TO ('2024-05-28'); +create table if not exists public.metadata_2024_05_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-28') TO ('2024-05-29'); +create table if not exists public.metadata_2024_05_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-29') TO ('2024-05-30'); +create table if not exists public.metadata_2024_05_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-30') TO ('2024-05-31'); +create table if not exists public.metadata_2024_05_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-05-31') TO ('2024-06-01'); +create table if not exists public.metadata_2024_06_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-01') TO ('2024-06-02'); +create table if not exists public.metadata_2024_06_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-02') TO ('2024-06-03'); +create table if not exists public.metadata_2024_06_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-03') TO ('2024-06-04'); +create table if not exists public.metadata_2024_06_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-04') TO ('2024-06-05'); +create table if not exists public.metadata_2024_06_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-05') TO ('2024-06-06'); +create table if not exists public.metadata_2024_06_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-06') TO ('2024-06-07'); +create table if not exists public.metadata_2024_06_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-07') TO ('2024-06-08'); +create table if not exists public.metadata_2024_06_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-08') TO ('2024-06-09'); +create table if not exists public.metadata_2024_06_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-09') TO ('2024-06-10'); +create table if not exists public.metadata_2024_06_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-10') TO ('2024-06-11'); +create table if not exists public.metadata_2024_06_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-11') TO ('2024-06-12'); +create table if not exists public.metadata_2024_06_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-12') TO ('2024-06-13'); +create table if not exists public.metadata_2024_06_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-13') TO ('2024-06-14'); +create table if not exists public.metadata_2024_06_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-14') TO ('2024-06-15'); +create table if not exists public.metadata_2024_06_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-15') TO ('2024-06-16'); +create table if not exists public.metadata_2024_06_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-16') TO ('2024-06-17'); +create table if not exists public.metadata_2024_06_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-17') TO ('2024-06-18'); +create table if not exists public.metadata_2024_06_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-18') TO ('2024-06-19'); +create table if not exists public.metadata_2024_06_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-19') TO ('2024-06-20'); +create table if not exists public.metadata_2024_06_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-20') TO ('2024-06-21'); +create table if not exists public.metadata_2024_06_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-21') TO ('2024-06-22'); +create table if not exists public.metadata_2024_06_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-22') TO ('2024-06-23'); +create table if not exists public.metadata_2024_06_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-23') TO ('2024-06-24'); +create table if not exists public.metadata_2024_06_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-24') TO ('2024-06-25'); +create table if not exists public.metadata_2024_06_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-25') TO ('2024-06-26'); +create table if not exists public.metadata_2024_06_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-26') TO ('2024-06-27'); +create table if not exists public.metadata_2024_06_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-27') TO ('2024-06-28'); +create table if not exists public.metadata_2024_06_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-28') TO ('2024-06-29'); +create table if not exists public.metadata_2024_06_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-29') TO ('2024-06-30'); +create table if not exists public.metadata_2024_06_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-06-30') TO ('2024-07-01'); +create table if not exists public.metadata_2024_07_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-01') TO ('2024-07-02'); +create table if not exists public.metadata_2024_07_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-02') TO ('2024-07-03'); +create table if not exists public.metadata_2024_07_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-03') TO ('2024-07-04'); +create table if not exists public.metadata_2024_07_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-04') TO ('2024-07-05'); +create table if not exists public.metadata_2024_07_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-05') TO ('2024-07-06'); +create table if not exists public.metadata_2024_07_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-06') TO ('2024-07-07'); +create table if not exists public.metadata_2024_07_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-07') TO ('2024-07-08'); +create table if not exists public.metadata_2024_07_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-08') TO ('2024-07-09'); +create table if not exists public.metadata_2024_07_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-09') TO ('2024-07-10'); +create table if not exists public.metadata_2024_07_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-10') TO ('2024-07-11'); +create table if not exists public.metadata_2024_07_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-11') TO ('2024-07-12'); +create table if not exists public.metadata_2024_07_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-12') TO ('2024-07-13'); +create table if not exists public.metadata_2024_07_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-13') TO ('2024-07-14'); +create table if not exists public.metadata_2024_07_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-14') TO ('2024-07-15'); +create table if not exists public.metadata_2024_07_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-15') TO ('2024-07-16'); +create table if not exists public.metadata_2024_07_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-16') TO ('2024-07-17'); +create table if not exists public.metadata_2024_07_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-17') TO ('2024-07-18'); +create table if not exists public.metadata_2024_07_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-18') TO ('2024-07-19'); +create table if not exists public.metadata_2024_07_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-19') TO ('2024-07-20'); +create table if not exists public.metadata_2024_07_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-20') TO ('2024-07-21'); +create table if not exists public.metadata_2024_07_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-21') TO ('2024-07-22'); +create table if not exists public.metadata_2024_07_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-22') TO ('2024-07-23'); +create table if not exists public.metadata_2024_07_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-23') TO ('2024-07-24'); +create table if not exists public.metadata_2024_07_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-24') TO ('2024-07-25'); +create table if not exists public.metadata_2024_07_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-25') TO ('2024-07-26'); +create table if not exists public.metadata_2024_07_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-26') TO ('2024-07-27'); +create table if not exists public.metadata_2024_07_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-27') TO ('2024-07-28'); +create table if not exists public.metadata_2024_07_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-28') TO ('2024-07-29'); +create table if not exists public.metadata_2024_07_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-29') TO ('2024-07-30'); +create table if not exists public.metadata_2024_07_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-30') TO ('2024-07-31'); +create table if not exists public.metadata_2024_07_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-07-31') TO ('2024-08-01'); +create table if not exists public.metadata_2024_08_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-01') TO ('2024-08-02'); +create table if not exists public.metadata_2024_08_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-02') TO ('2024-08-03'); +create table if not exists public.metadata_2024_08_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-03') TO ('2024-08-04'); +create table if not exists public.metadata_2024_08_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-04') TO ('2024-08-05'); +create table if not exists public.metadata_2024_08_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-05') TO ('2024-08-06'); +create table if not exists public.metadata_2024_08_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-06') TO ('2024-08-07'); +create table if not exists public.metadata_2024_08_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-07') TO ('2024-08-08'); +create table if not exists public.metadata_2024_08_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-08') TO ('2024-08-09'); +create table if not exists public.metadata_2024_08_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-09') TO ('2024-08-10'); +create table if not exists public.metadata_2024_08_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-10') TO ('2024-08-11'); +create table if not exists public.metadata_2024_08_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-11') TO ('2024-08-12'); +create table if not exists public.metadata_2024_08_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-12') TO ('2024-08-13'); +create table if not exists public.metadata_2024_08_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-13') TO ('2024-08-14'); +create table if not exists public.metadata_2024_08_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-14') TO ('2024-08-15'); +create table if not exists public.metadata_2024_08_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-15') TO ('2024-08-16'); +create table if not exists public.metadata_2024_08_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-16') TO ('2024-08-17'); +create table if not exists public.metadata_2024_08_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-17') TO ('2024-08-18'); +create table if not exists public.metadata_2024_08_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-18') TO ('2024-08-19'); +create table if not exists public.metadata_2024_08_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-19') TO ('2024-08-20'); +create table if not exists public.metadata_2024_08_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-20') TO ('2024-08-21'); +create table if not exists public.metadata_2024_08_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-21') TO ('2024-08-22'); +create table if not exists public.metadata_2024_08_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-22') TO ('2024-08-23'); +create table if not exists public.metadata_2024_08_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-23') TO ('2024-08-24'); +create table if not exists public.metadata_2024_08_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-24') TO ('2024-08-25'); +create table if not exists public.metadata_2024_08_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-25') TO ('2024-08-26'); +create table if not exists public.metadata_2024_08_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-26') TO ('2024-08-27'); +create table if not exists public.metadata_2024_08_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-27') TO ('2024-08-28'); +create table if not exists public.metadata_2024_08_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-28') TO ('2024-08-29'); +create table if not exists public.metadata_2024_08_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-29') TO ('2024-08-30'); +create table if not exists public.metadata_2024_08_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-30') TO ('2024-08-31'); +create table if not exists public.metadata_2024_08_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-08-31') TO ('2024-09-01'); +create table if not exists public.metadata_2024_09_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-01') TO ('2024-09-02'); +create table if not exists public.metadata_2024_09_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-02') TO ('2024-09-03'); +create table if not exists public.metadata_2024_09_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-03') TO ('2024-09-04'); +create table if not exists public.metadata_2024_09_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-04') TO ('2024-09-05'); +create table if not exists public.metadata_2024_09_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-05') TO ('2024-09-06'); +create table if not exists public.metadata_2024_09_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-06') TO ('2024-09-07'); +create table if not exists public.metadata_2024_09_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-07') TO ('2024-09-08'); +create table if not exists public.metadata_2024_09_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-08') TO ('2024-09-09'); +create table if not exists public.metadata_2024_09_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-09') TO ('2024-09-10'); +create table if not exists public.metadata_2024_09_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-10') TO ('2024-09-11'); +create table if not exists public.metadata_2024_09_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-11') TO ('2024-09-12'); +create table if not exists public.metadata_2024_09_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-12') TO ('2024-09-13'); +create table if not exists public.metadata_2024_09_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-13') TO ('2024-09-14'); +create table if not exists public.metadata_2024_09_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-14') TO ('2024-09-15'); +create table if not exists public.metadata_2024_09_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-15') TO ('2024-09-16'); +create table if not exists public.metadata_2024_09_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-16') TO ('2024-09-17'); +create table if not exists public.metadata_2024_09_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-17') TO ('2024-09-18'); +create table if not exists public.metadata_2024_09_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-18') TO ('2024-09-19'); +create table if not exists public.metadata_2024_09_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-19') TO ('2024-09-20'); +create table if not exists public.metadata_2024_09_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-20') TO ('2024-09-21'); +create table if not exists public.metadata_2024_09_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-21') TO ('2024-09-22'); +create table if not exists public.metadata_2024_09_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-22') TO ('2024-09-23'); +create table if not exists public.metadata_2024_09_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-23') TO ('2024-09-24'); +create table if not exists public.metadata_2024_09_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-24') TO ('2024-09-25'); +create table if not exists public.metadata_2024_09_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-25') TO ('2024-09-26'); +create table if not exists public.metadata_2024_09_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-26') TO ('2024-09-27'); +create table if not exists public.metadata_2024_09_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-27') TO ('2024-09-28'); +create table if not exists public.metadata_2024_09_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-28') TO ('2024-09-29'); +create table if not exists public.metadata_2024_09_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-29') TO ('2024-09-30'); +create table if not exists public.metadata_2024_09_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-09-30') TO ('2024-10-01'); +create table if not exists public.metadata_2024_10_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-01') TO ('2024-10-02'); +create table if not exists public.metadata_2024_10_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-02') TO ('2024-10-03'); +create table if not exists public.metadata_2024_10_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-03') TO ('2024-10-04'); +create table if not exists public.metadata_2024_10_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-04') TO ('2024-10-05'); +create table if not exists public.metadata_2024_10_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-05') TO ('2024-10-06'); +create table if not exists public.metadata_2024_10_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-06') TO ('2024-10-07'); +create table if not exists public.metadata_2024_10_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-07') TO ('2024-10-08'); +create table if not exists public.metadata_2024_10_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-08') TO ('2024-10-09'); +create table if not exists public.metadata_2024_10_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-09') TO ('2024-10-10'); +create table if not exists public.metadata_2024_10_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-10') TO ('2024-10-11'); +create table if not exists public.metadata_2024_10_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-11') TO ('2024-10-12'); +create table if not exists public.metadata_2024_10_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-12') TO ('2024-10-13'); +create table if not exists public.metadata_2024_10_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-13') TO ('2024-10-14'); +create table if not exists public.metadata_2024_10_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-14') TO ('2024-10-15'); +create table if not exists public.metadata_2024_10_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-15') TO ('2024-10-16'); +create table if not exists public.metadata_2024_10_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-16') TO ('2024-10-17'); +create table if not exists public.metadata_2024_10_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-17') TO ('2024-10-18'); +create table if not exists public.metadata_2024_10_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-18') TO ('2024-10-19'); +create table if not exists public.metadata_2024_10_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-19') TO ('2024-10-20'); +create table if not exists public.metadata_2024_10_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-20') TO ('2024-10-21'); +create table if not exists public.metadata_2024_10_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-21') TO ('2024-10-22'); +create table if not exists public.metadata_2024_10_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-22') TO ('2024-10-23'); +create table if not exists public.metadata_2024_10_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-23') TO ('2024-10-24'); +create table if not exists public.metadata_2024_10_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-24') TO ('2024-10-25'); +create table if not exists public.metadata_2024_10_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-25') TO ('2024-10-26'); +create table if not exists public.metadata_2024_10_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-26') TO ('2024-10-27'); +create table if not exists public.metadata_2024_10_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-27') TO ('2024-10-28'); +create table if not exists public.metadata_2024_10_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-28') TO ('2024-10-29'); +create table if not exists public.metadata_2024_10_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-29') TO ('2024-10-30'); +create table if not exists public.metadata_2024_10_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-30') TO ('2024-10-31'); +create table if not exists public.metadata_2024_10_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-10-31') TO ('2024-11-01'); +create table if not exists public.metadata_2024_11_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-01') TO ('2024-11-02'); +create table if not exists public.metadata_2024_11_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-02') TO ('2024-11-03'); +create table if not exists public.metadata_2024_11_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-03') TO ('2024-11-04'); +create table if not exists public.metadata_2024_11_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-04') TO ('2024-11-05'); +create table if not exists public.metadata_2024_11_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-05') TO ('2024-11-06'); +create table if not exists public.metadata_2024_11_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-06') TO ('2024-11-07'); +create table if not exists public.metadata_2024_11_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-07') TO ('2024-11-08'); +create table if not exists public.metadata_2024_11_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-08') TO ('2024-11-09'); +create table if not exists public.metadata_2024_11_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-09') TO ('2024-11-10'); +create table if not exists public.metadata_2024_11_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-10') TO ('2024-11-11'); +create table if not exists public.metadata_2024_11_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-11') TO ('2024-11-12'); +create table if not exists public.metadata_2024_11_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-12') TO ('2024-11-13'); +create table if not exists public.metadata_2024_11_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-13') TO ('2024-11-14'); +create table if not exists public.metadata_2024_11_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-14') TO ('2024-11-15'); +create table if not exists public.metadata_2024_11_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-15') TO ('2024-11-16'); +create table if not exists public.metadata_2024_11_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-16') TO ('2024-11-17'); +create table if not exists public.metadata_2024_11_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-17') TO ('2024-11-18'); +create table if not exists public.metadata_2024_11_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-18') TO ('2024-11-19'); +create table if not exists public.metadata_2024_11_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-19') TO ('2024-11-20'); +create table if not exists public.metadata_2024_11_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-20') TO ('2024-11-21'); +create table if not exists public.metadata_2024_11_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-21') TO ('2024-11-22'); +create table if not exists public.metadata_2024_11_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-22') TO ('2024-11-23'); +create table if not exists public.metadata_2024_11_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-23') TO ('2024-11-24'); +create table if not exists public.metadata_2024_11_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-24') TO ('2024-11-25'); +create table if not exists public.metadata_2024_11_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-25') TO ('2024-11-26'); +create table if not exists public.metadata_2024_11_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-26') TO ('2024-11-27'); +create table if not exists public.metadata_2024_11_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-27') TO ('2024-11-28'); +create table if not exists public.metadata_2024_11_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-28') TO ('2024-11-29'); +create table if not exists public.metadata_2024_11_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-29') TO ('2024-11-30'); +create table if not exists public.metadata_2024_11_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-11-30') TO ('2024-12-01'); +create table if not exists public.metadata_2024_12_01 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-01') TO ('2024-12-02'); +create table if not exists public.metadata_2024_12_02 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-02') TO ('2024-12-03'); +create table if not exists public.metadata_2024_12_03 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-03') TO ('2024-12-04'); +create table if not exists public.metadata_2024_12_04 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-04') TO ('2024-12-05'); +create table if not exists public.metadata_2024_12_05 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-05') TO ('2024-12-06'); +create table if not exists public.metadata_2024_12_06 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-06') TO ('2024-12-07'); +create table if not exists public.metadata_2024_12_07 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-07') TO ('2024-12-08'); +create table if not exists public.metadata_2024_12_08 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-08') TO ('2024-12-09'); +create table if not exists public.metadata_2024_12_09 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-09') TO ('2024-12-10'); +create table if not exists public.metadata_2024_12_10 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-10') TO ('2024-12-11'); +create table if not exists public.metadata_2024_12_11 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-11') TO ('2024-12-12'); +create table if not exists public.metadata_2024_12_12 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-12') TO ('2024-12-13'); +create table if not exists public.metadata_2024_12_13 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-13') TO ('2024-12-14'); +create table if not exists public.metadata_2024_12_14 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-14') TO ('2024-12-15'); +create table if not exists public.metadata_2024_12_15 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-15') TO ('2024-12-16'); +create table if not exists public.metadata_2024_12_16 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-16') TO ('2024-12-17'); +create table if not exists public.metadata_2024_12_17 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-17') TO ('2024-12-18'); +create table if not exists public.metadata_2024_12_18 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-18') TO ('2024-12-19'); +create table if not exists public.metadata_2024_12_19 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-19') TO ('2024-12-20'); +create table if not exists public.metadata_2024_12_20 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-20') TO ('2024-12-21'); +create table if not exists public.metadata_2024_12_21 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-21') TO ('2024-12-22'); +create table if not exists public.metadata_2024_12_22 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-22') TO ('2024-12-23'); +create table if not exists public.metadata_2024_12_23 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-23') TO ('2024-12-24'); +create table if not exists public.metadata_2024_12_24 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-24') TO ('2024-12-25'); +create table if not exists public.metadata_2024_12_25 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-25') TO ('2024-12-26'); +create table if not exists public.metadata_2024_12_26 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-26') TO ('2024-12-27'); +create table if not exists public.metadata_2024_12_27 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-27') TO ('2024-12-28'); +create table if not exists public.metadata_2024_12_28 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-28') TO ('2024-12-29'); +create table if not exists public.metadata_2024_12_29 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-29') TO ('2024-12-30'); +create table if not exists public.metadata_2024_12_30 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-30') TO ('2024-12-31'); +create table if not exists public.metadata_2024_12_31 partition of public.metadata_2024 FOR VALUES FROM ('2024-12-31') TO ('2025-01-01'); \ No newline at end of file diff --git a/src/src/crawler/events/resp/activatePaymentNotice.php b/src/src/crawler/events/resp/activatePaymentNotice.php index ded67a2..d7319d7 100644 --- a/src/src/crawler/events/resp/activatePaymentNotice.php +++ b/src/src/crawler/events/resp/activatePaymentNotice.php @@ -241,7 +241,13 @@ public function transaction(int $index = 0): Transaction|null */ public function transactionDetails(int $transfer = 0, int $index = 0): TransactionDetails|null { - return null; + $transaction_details = new TransactionDetails($this->getInsertedTimestamp()); + $transaction_details->setNewColumnValue('date_event', $this->getInsertedTimestamp()->format('Y-m-d')); + $transaction_details->setPaTransfer($this->getMethodInterface()->getTransferPa($transfer, 0)); + $transaction_details->setAmountTransfer($this->getMethodInterface()->getTransferAmount($transfer, 0)); + $transaction_details->setTransferIban($this->getMethodInterface()->getTransferIban($transfer, 0)); + $transaction_details->setIdTransfer($this->getMethodInterface()->getTransferId($transfer, 0)); + return $transaction_details; } /** diff --git a/src/src/crawler/paymentlist/req/activatePaymentNotice.php b/src/src/crawler/paymentlist/req/activatePaymentNotice.php index 81aa134..f9f96d4 100644 --- a/src/src/crawler/paymentlist/req/activatePaymentNotice.php +++ b/src/src/crawler/paymentlist/req/activatePaymentNotice.php @@ -149,6 +149,7 @@ public function runCreateAttempt(int $index = 0): array 'pa_emittente' => $pa_emittente, 'token_ccp' => $token, 'transfer_added' => false, + 'esito' => false, 'amount_update' => false ]; $this->addValueCache($cache_key, $cache_value); diff --git a/src/src/crawler/paymentlist/req/nodoInviaCarrelloRPT.php b/src/src/crawler/paymentlist/req/nodoInviaCarrelloRPT.php index e69cde3..b361c10 100644 --- a/src/src/crawler/paymentlist/req/nodoInviaCarrelloRPT.php +++ b/src/src/crawler/paymentlist/req/nodoInviaCarrelloRPT.php @@ -141,6 +141,7 @@ public function runCreateAttempt(int $index = 0): array 'token_ccp' => $ccp, 'id_carrello' => $id_carrello, 'transfer_add' => true, + 'esito' => false, 'amount_update' => true ]; @@ -150,6 +151,7 @@ public function runCreateAttempt(int $index = 0): array $details->setFkPayment($last_inserted_id); $details->insert(); DB::statement($details->getQuery(), $details->getBindParams()); + $last_inserted_id_transfer = DB::connection()->getPdo()->lastInsertId(); if ($this->getEvent()->getMethodInterface()->isBollo($i, $index)) { @@ -157,7 +159,7 @@ public function runCreateAttempt(int $index = 0): array 'pa_transfer' => $this->getEvent()->getMethodInterface()->getTransferPa($i, $index), 'bollo' => true, 'amount_transfer' => $this->getEvent()->getMethodInterface()->getTransferAmount($i, $index), - 'iban_transfer' => '' + 'iban_transfer' => '' ]; } else @@ -169,6 +171,8 @@ public function runCreateAttempt(int $index = 0): array 'iban_transfer' => $this->getEvent()->getMethodInterface()->getTransferIban($i, $index) ]; } + $transfer_add['id'] = $last_inserted_id_transfer; + $transfer_add['date_event'] = $this->getEvent()->getInsertedTimestamp()->format('Y-m-d'); $cache_value['transfer_list'][] = $transfer_add; } diff --git a/src/src/crawler/paymentlist/resp/activatePaymentNotice.php b/src/src/crawler/paymentlist/resp/activatePaymentNotice.php index cff727f..5bcc385 100644 --- a/src/src/crawler/paymentlist/resp/activatePaymentNotice.php +++ b/src/src/crawler/paymentlist/resp/activatePaymentNotice.php @@ -135,17 +135,22 @@ public function runCreateAttempt(int $index = 0): array DB::statement($transaction->getQuery(), $transaction->getBindParams()); $last_inserted_id = DB::connection()->getPdo()->lastInsertId(); + $transfer_add = []; for($i=0;$i<$this->getEvent()->getTransferCount($index);$i++) { - $transaction_details = new TransactionDetails($this->getEvent()->getInsertedTimestamp()); + $transaction_details = $this->getEvent()->transactionDetails($i, 0); $transaction_details->setFkPayment($last_inserted_id); - $transaction_details->setNewColumnValue('date_event', $date_event); - $transaction_details->setPaTransfer($this->getEvent()->getMethodInterface()->getTransferPa($i, 0)); - $transaction_details->setAmountTransfer($this->getEvent()->getMethodInterface()->getTransferAmount($i, 0)); - $transaction_details->setTransferIban($this->getEvent()->getMethodInterface()->getTransferIban($i, 0)); - $transaction_details->setIdTransfer($this->getEvent()->getMethodInterface()->getTransferId($i, 0)); $transaction_details->insert(); DB::statement($transaction_details->getQuery(), $transaction_details->getBindParams()); + $last_inserted_id_transfer = DB::connection()->getPdo()->lastInsertId(); + $transfer_add[] = [ + 'pa_transfer' => $this->getEvent()->getMethodInterface()->getTransferPa($i, 0), + 'bollo' => false, + 'amount_transfer' => $this->getEvent()->getMethodInterface()->getTransferAmount($i, 0), + 'iban_transfer' => $this->getEvent()->getMethodInterface()->getTransferIban($i, 0), + 'id' => $last_inserted_id_transfer, + 'date_event' => $this->getEvent()->getInsertedTimestamp()->format('Y-m-d') + ]; } @@ -159,6 +164,8 @@ public function runCreateAttempt(int $index = 0): array 'pa_emittente' => $pa_emittente, 'token_ccp' => $token, 'transfer_add' => true, + 'transfer_list' => $transfer_add, + 'esito' => false, 'amount_update' => true ]; $this->addValueCache($cache_key, $cache_value); diff --git a/src/tests/.phpunit.result.cache b/src/tests/.phpunit.result.cache index 89a1e9e..73c57e1 100644 --- a/src/tests/.phpunit.result.cache +++ b/src/tests/.phpunit.result.cache @@ -1 +1 @@ -{"version":1,"defects":{"pagopa\\process\\normal\\T0011::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0011::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0011::testCorrectReEvent":7,"pagopa\\process\\normal\\T0012::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0012::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0012::testCorrectDetails":7,"pagopa\\process\\normal\\T0013::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0013::testCorrectDetails":7,"pagopa\\process\\normal\\T0014::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0014::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectDetails":7,"pagopa\\process\\normal\\T0016::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0016::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0016::testCorrectReEvent":7,"pagopa\\process\\normal\\T0016::testCorrectDetails":7,"pagopa\\process\\normal\\T0018::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0018::testCorrectDetails":7,"pagopa\\process\\normal\\T0011::testCorrectDetails":7,"pagopa\\process\\normal\\T0012::testCorrectReEvent":7,"pagopa\\process\\normal\\T0013::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0013::testCorrectReEvent":7,"pagopa\\process\\normal\\T0014::testCorrectReEvent":7,"pagopa\\process\\normal\\T0015::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectReEvent":7,"pagopa\\process\\normal\\T0017::testCorrectReEvent":7,"pagopa\\process\\normal\\T0018::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0018::testCorrectReEvent":7,"pagopa\\process\\normal\\T0019::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0019::testCorrectDetails":7,"pagopa\\process\\normal\\T0019::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0019::testCorrectReEvent":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcps":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcp":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetToken":8,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImporto":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImportoTotale":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferAmount":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testIsBollo":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferIban":8,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferPa":7,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsFaultEvent":8,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultCode":8,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultString":7,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsBollo":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuv":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetMethodInterface":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testIsValid":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction":8,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransactionDetails":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testWorkflowEvent":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt1Versamento":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT2TransferEach":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testA":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT1TransferForEachRPTMultiPa":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testIsValid":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetMethodInterface":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":8,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testWorkflow":7,"process\\normal\\T0001::testCorrectInfoTransaction":7,"process\\normal\\T0001::testCorrectWorkflow":7,"process\\normal\\T0001::testCorrectReEvent":7,"tests\\process\\normal\\T0002::testCorrectInfoTransaction":7,"tests\\process\\normal\\T0005::testCorrectDateEvent":7,"process\\normal\\T0011::testCorrectDateEvent":7,"process\\normal\\T0012::testCorrectDateEvent":7,"process\\normal\\T0013::testCorrectDateEvent":7,"process\\normal\\T0014::testCorrectDateEvent":7,"process\\normal\\T0015::testCorrectDateEvent":7,"process\\normal\\T0016::testCorrectDateEvent":7,"process\\normal\\T0018::testCorrectDateEvent":7,"process\\normal\\T0019::testCorrectDateEvent":7,"process\\normal\\T0011::testCorrectWorkflowDateEvent":7,"process\\normal\\T0012::testCorrectWorkflowDateEvent":7,"process\\normal\\T0013::testCorrectWorkflowDateEvent":7,"process\\normal\\T0014::testCorrectWorkflowDateEvent":7,"process\\normal\\T0015::testCorrectWorkflowDateEvent":7,"process\\normal\\T0018::testCorrectWorkflowDateEvent":7,"process\\normal\\T0019::testCorrectWorkflowDateEvent":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPsp":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt2Versamenti":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1RPT1TransferAndBollo":7,"tests\\process\\normal\\T0003::testCorrectDateEvent":7,"tests\\process\\normal\\T0004::testCorrectDateEvent":7,"tests\\process\\normal\\T0005::testCorrectWorkflowDateEvent":7,"tests\\process\\normal\\T0006::testCorrectDateEvent":7,"tests\\process\\normal\\T0007::testCorrectDateEvent":7,"tests\\process\\normal\\T0009::testCorrectDateEvent":7,"tests\\process\\normal\\T0009::testCorrectWorkflowDateEvent":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithAllInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutPspInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutChannelInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptAfterFirstAttempt":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentAfterFirstAttempt":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentWithoutNoticeInEvent":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateOnlyWorkFlow":7,"tests\\process\\cache\\TestAnalysisActivatePaymentNoticeResp::testInsertTransfer":7,"process\\crawler\\SingleActivatePaymentNoticeReq::testWorkflow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testEvent":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransactionDetails":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testReEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testReEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransactionDetails":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testWorkFlow":8,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcps":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuv":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcp":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testEvent":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":8},"times":{"pagopa\\database\\SingleRowTest::testGetTable":0.01,"pagopa\\database\\SingleRowTest::testGetColumnValue":0.001,"pagopa\\database\\SingleRowTest::testGetReadyColumnValue":0,"pagopa\\database\\SingleRowTest::testGetRow":0,"pagopa\\database\\SingleRowTest::testGetNeedPrimaryKeys":0,"pagopa\\database\\SingleRowTest::testGetPrimaryKeys":0,"pagopa\\database\\SingleRowTest::testInsert":0,"pagopa\\database\\SingleRowTest::testUpdate":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testIsValid":0.004,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetMethodInterface":0.003,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetMethodInterface":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferPa":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferAmount":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testIsBollo":0.003,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferPa":0.001,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferAmount":0.001,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testIsBollo":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testIsFaultEvent":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetFaultCode":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetFaultString":0,"pagopa\\process\\normal\\T0001::testCorrectInfoTransaction":0.009,"pagopa\\process\\normal\\T0001::testCorrectWorkflow":0,"pagopa\\process\\normal\\T0001::testCorrectReEvent":0,"pagopa\\process\\normal\\T0002::testCorrectInfoTransaction":0,"pagopa\\process\\normal\\T0002::testCorrectWorkflow":0,"pagopa\\process\\normal\\T0002::testCorrectReEvent":0,"pagopa\\process\\normal\\T0003::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0003::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0003::testCorrectReEvent":0,"pagopa\\process\\normal\\T0004::testCorrectDateEvent":0.001,"pagopa\\process\\normal\\T0004::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0004::testCorrectReEvent":0,"pagopa\\process\\normal\\T0005::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0005::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0005::testCorrectReEvent":0,"pagopa\\process\\normal\\T0006::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0006::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0006::testCorrectReEvent":0,"pagopa\\process\\normal\\T0007::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0007::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0007::testCorrectReEvent":0,"pagopa\\process\\normal\\T0008::testCorrectDateEvent":0.001,"pagopa\\process\\normal\\T0008::testCorrectReEvent":0,"pagopa\\process\\normal\\T0009::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0009::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0009::testCorrectReEvent":0,"pagopa\\process\\normal\\T0010::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0010::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0010::testCorrectReEvent":0,"pagopa\\process\\normal\\T0011::testCorrectDateEvent":0.012,"pagopa\\process\\normal\\T0011::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0011::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0011::testCorrectDetails":0.002,"pagopa\\process\\normal\\T0012::testCorrectDateEvent":0.012,"pagopa\\process\\normal\\T0012::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0012::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0012::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0013::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0013::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0013::testCorrectReEvent":0.002,"pagopa\\process\\normal\\T0013::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0014::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0014::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0014::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0014::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0015::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0015::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0015::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0015::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0016::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0016::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0016::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0016::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0017::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0017::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0017::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0017::testCorrectDetails":0,"pagopa\\process\\normal\\T0018::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0018::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0018::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0018::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0019::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0019::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0019::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0019::testCorrectReEvent":0.001,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetMethodInterface":0.005,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetMethodInterface":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferPa":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferAmount":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testIsBollo":0.003,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferPa":0.001,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferAmount":0.001,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testIsBollo":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testIsFaultEvent":0.004,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetFaultCode":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetFaultString":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcps":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferId":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcp":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetToken":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImporto":0.007,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImportoTotale":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferAmount":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testIsBollo":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::test__construct":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIuv":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetAllTokens":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferPa":0.004,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferIban":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIuvs":0.001,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsFaultEvent":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultCode":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferCount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultString":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetIuvs":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetIuv":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferId":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCcps":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsBollo":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferPa":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetImportoTotale":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetAllTokens":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCcp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferAmount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetToken":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferIban":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetImporto":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction":0.005,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransactionDetails":0.009,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaymentToken":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCcp":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetMethodInterface":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCcps":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuv":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuvs":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetKey":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testWorkflowEvent":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testIsValid":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt1Versamento":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt2Versamenti":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT2TransferEach":0.005,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testA":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1RPT1TransferAndBollo":0.003,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT1TransferForEachRPTMultiPa":0.005,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetTransferCount":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testIsValid":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentToken":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCcp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetKey":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCcps":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetIuv":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetIuvs":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetMethodInterface":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testTransaction":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testTransactionDetails":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testWorkflow":0,"pagopa\\database\\SingleRowTest::testRemoveColumn":0,"process\\normal\\T0001::testCorrectInfoTransaction":0.058,"process\\normal\\T0001::testCorrectWorkflow":0,"process\\normal\\T0001::testCorrectReEvent":0,"tests\\process\\normal\\T0002::testCorrectInfoTransaction":0,"tests\\process\\normal\\T0002::testCorrectWorkflow":0,"tests\\process\\normal\\T0002::testCorrectReEvent":0,"tests\\process\\normal\\T0003::testCorrectDateEvent":0,"tests\\process\\normal\\T0003::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0003::testCorrectReEvent":0,"tests\\process\\normal\\T0004::testCorrectDateEvent":0.014,"tests\\process\\normal\\T0004::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0004::testCorrectReEvent":0,"tests\\process\\normal\\T0005::testCorrectDateEvent":0,"tests\\process\\normal\\T0005::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0005::testCorrectReEvent":0,"tests\\process\\normal\\T0006::testCorrectDateEvent":0,"tests\\process\\normal\\T0006::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0006::testCorrectReEvent":0,"tests\\process\\normal\\T0007::testCorrectDateEvent":0,"tests\\process\\normal\\T0007::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0007::testCorrectReEvent":0,"tests\\process\\normal\\T0008::testCorrectDateEvent":0.003,"tests\\process\\normal\\T0008::testCorrectReEvent":0,"tests\\process\\normal\\T0009::testCorrectDateEvent":0,"tests\\process\\normal\\T0009::testCorrectWorkflowDateEvent":0.007,"tests\\process\\normal\\T0009::testCorrectReEvent":0,"process\\normal\\T0010::testCorrectDateEvent":0,"process\\normal\\T0010::testCorrectWorkflowDateEvent":0.008,"process\\normal\\T0010::testCorrectReEvent":0,"process\\normal\\T0011::testCorrectDateEvent":0.012,"process\\normal\\T0011::testCorrectWorkflowDateEvent":0.046,"process\\normal\\T0011::testCorrectReEvent":0.054,"process\\normal\\T0011::testCorrectDetails":0.04,"process\\normal\\T0012::testCorrectDateEvent":0.013,"process\\normal\\T0012::testCorrectWorkflowDateEvent":0.059,"process\\normal\\T0012::testCorrectReEvent":0.055,"process\\normal\\T0012::testCorrectDetails":0.025,"process\\normal\\T0013::testCorrectDateEvent":0,"process\\normal\\T0013::testCorrectWorkflowDateEvent":0.041,"process\\normal\\T0013::testCorrectReEvent":0.086,"process\\normal\\T0013::testCorrectDetails":0.024,"process\\normal\\T0014::testCorrectDateEvent":0,"process\\normal\\T0014::testCorrectWorkflowDateEvent":0.049,"process\\normal\\T0014::testCorrectReEvent":0.054,"process\\normal\\T0014::testCorrectDetails":0.034,"process\\normal\\T0015::testCorrectDateEvent":0,"process\\normal\\T0015::testCorrectWorkflowDateEvent":0.049,"process\\normal\\T0015::testCorrectReEvent":0.055,"process\\normal\\T0015::testCorrectDetails":0.025,"process\\normal\\T0016::testCorrectDateEvent":0,"process\\normal\\T0016::testCorrectWorkflowDateEvent":0.055,"process\\normal\\T0016::testCorrectReEvent":0.056,"process\\normal\\T0016::testCorrectDetails":0.024,"process\\normal\\T0017::testCorrectDateEvent":0,"process\\normal\\T0017::testCorrectWorkflowDateEvent":0.005,"process\\normal\\T0017::testCorrectReEvent":0.065,"process\\normal\\T0017::testCorrectDetails":0,"process\\normal\\T0018::testCorrectDateEvent":0,"process\\normal\\T0018::testCorrectDetails":0.05,"process\\normal\\T0018::testCorrectWorkflowDateEvent":0.044,"process\\normal\\T0018::testCorrectReEvent":0.052,"process\\normal\\T0019::testCorrectDateEvent":0,"process\\normal\\T0019::testCorrectDetails":0.031,"process\\normal\\T0019::testCorrectWorkflowDateEvent":0.036,"process\\normal\\T0019::testCorrectReEvent":0.068,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithAllInfoInEvents":0.209,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutPspInfoInEvents":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutChannelInfoInEvents":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptAfterFirstAttempt":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentAfterFirstAttempt":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentWithoutNoticeInEvent":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateOnlyWorkFlow":0.001,"tests\\process\\cache\\TestAnalysisActivatePaymentNoticeResp::testInsertTransfer":0.067,"process\\crawler\\SingleActivatePaymentNoticeReq::testTransaction":0.022,"process\\crawler\\SingleActivatePaymentNoticeReq::testTransactionDetails":0.028,"process\\crawler\\SingleActivatePaymentNoticeReq::testWorkflow":0.035,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testTransaction":0.063,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testTransactionDetails":0.033,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testWorkflow":0.031,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testReEvent":0,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransaction":0.018,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransactionDetails":0.004,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testWorkFlow":0.007,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransaction":0.028,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransactionDetails":0.004,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testTransaction":0.015,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransaction":0.014,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransaction":0.091,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testWorkflow":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testReEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testTransactionDetails":0,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testWorkFlow":0,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testWorkflow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testReEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransaction":0.01,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testWorkflow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testReEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransaction":0.014,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransactionDetails":0.005,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransaction":0.01,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransaction":0.013,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransaction":0.131,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransaction":0.01,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransaction":0.009,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransaction":0.009,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testTransaction":0.009,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransactionDetails":0.007,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransaction":0.009,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransaction":0.013,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransactionDetails":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testWorkFlow":0.005,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":0.013,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":0.004,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransaction":0.095,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":0.006,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransaction":0.046,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransactionDetails":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":0.009,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransaction":0.009,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testEvent":0.001}} \ No newline at end of file +{"version":1,"defects":{"pagopa\\process\\normal\\T0011::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0011::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0011::testCorrectReEvent":7,"pagopa\\process\\normal\\T0012::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0012::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0012::testCorrectDetails":7,"pagopa\\process\\normal\\T0013::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0013::testCorrectDetails":7,"pagopa\\process\\normal\\T0014::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0014::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectDetails":7,"pagopa\\process\\normal\\T0016::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0016::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0016::testCorrectReEvent":7,"pagopa\\process\\normal\\T0016::testCorrectDetails":7,"pagopa\\process\\normal\\T0018::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0018::testCorrectDetails":7,"pagopa\\process\\normal\\T0011::testCorrectDetails":7,"pagopa\\process\\normal\\T0012::testCorrectReEvent":7,"pagopa\\process\\normal\\T0013::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0013::testCorrectReEvent":7,"pagopa\\process\\normal\\T0014::testCorrectReEvent":7,"pagopa\\process\\normal\\T0015::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0015::testCorrectReEvent":7,"pagopa\\process\\normal\\T0017::testCorrectReEvent":7,"pagopa\\process\\normal\\T0018::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0018::testCorrectReEvent":7,"pagopa\\process\\normal\\T0019::testCorrectDateEvent":7,"pagopa\\process\\normal\\T0019::testCorrectDetails":7,"pagopa\\process\\normal\\T0019::testCorrectWorkflowDateEvent":7,"pagopa\\process\\normal\\T0019::testCorrectReEvent":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcps":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcp":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetToken":8,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImporto":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImportoTotale":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferAmount":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testIsBollo":7,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferIban":8,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferPa":7,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsFaultEvent":8,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultCode":8,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultString":7,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsBollo":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuv":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetMethodInterface":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testIsValid":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction":8,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransactionDetails":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testWorkflowEvent":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt1Versamento":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT2TransferEach":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testA":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT1TransferForEachRPTMultiPa":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testIsValid":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetMethodInterface":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":8,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":7,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testWorkflow":7,"process\\normal\\T0001::testCorrectInfoTransaction":7,"process\\normal\\T0001::testCorrectWorkflow":7,"process\\normal\\T0001::testCorrectReEvent":7,"tests\\process\\normal\\T0002::testCorrectInfoTransaction":7,"tests\\process\\normal\\T0005::testCorrectDateEvent":7,"process\\normal\\T0011::testCorrectDateEvent":7,"process\\normal\\T0012::testCorrectDateEvent":7,"process\\normal\\T0013::testCorrectDateEvent":7,"process\\normal\\T0014::testCorrectDateEvent":7,"process\\normal\\T0015::testCorrectDateEvent":7,"process\\normal\\T0016::testCorrectDateEvent":7,"process\\normal\\T0018::testCorrectDateEvent":7,"process\\normal\\T0019::testCorrectDateEvent":7,"process\\normal\\T0011::testCorrectWorkflowDateEvent":7,"process\\normal\\T0012::testCorrectWorkflowDateEvent":7,"process\\normal\\T0013::testCorrectWorkflowDateEvent":7,"process\\normal\\T0014::testCorrectWorkflowDateEvent":7,"process\\normal\\T0015::testCorrectWorkflowDateEvent":7,"process\\normal\\T0018::testCorrectWorkflowDateEvent":7,"process\\normal\\T0019::testCorrectWorkflowDateEvent":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPsp":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt2Versamenti":7,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1RPT1TransferAndBollo":7,"tests\\process\\normal\\T0003::testCorrectDateEvent":7,"tests\\process\\normal\\T0004::testCorrectDateEvent":7,"tests\\process\\normal\\T0005::testCorrectWorkflowDateEvent":7,"tests\\process\\normal\\T0006::testCorrectDateEvent":7,"tests\\process\\normal\\T0007::testCorrectDateEvent":7,"tests\\process\\normal\\T0009::testCorrectDateEvent":7,"tests\\process\\normal\\T0009::testCorrectWorkflowDateEvent":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithAllInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutPspInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutChannelInfoInEvents":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptAfterFirstAttempt":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentAfterFirstAttempt":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentWithoutNoticeInEvent":7,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateOnlyWorkFlow":7,"tests\\process\\cache\\TestAnalysisActivatePaymentNoticeResp::testInsertTransfer":7,"process\\crawler\\SingleActivatePaymentNoticeReq::testWorkflow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testEvent":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransaction":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransactionDetails":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testReEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testReEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testEvent":7,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransaction":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransactionDetails":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testWorkFlow":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testWorkFlow":8,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcps":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuv":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcp":7,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":7,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testWorkflow":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransaction":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testWorkFlow":8,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransactionDetails":8,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransaction":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":7,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testEvent":8,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":8},"times":{"pagopa\\database\\SingleRowTest::testGetTable":0.01,"pagopa\\database\\SingleRowTest::testGetColumnValue":0.001,"pagopa\\database\\SingleRowTest::testGetReadyColumnValue":0,"pagopa\\database\\SingleRowTest::testGetRow":0,"pagopa\\database\\SingleRowTest::testGetNeedPrimaryKeys":0,"pagopa\\database\\SingleRowTest::testGetPrimaryKeys":0,"pagopa\\database\\SingleRowTest::testInsert":0,"pagopa\\database\\SingleRowTest::testUpdate":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testIsValid":0.004,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\crawler\\events\\req\\activatePaymentNoticeTest::testGetMethodInterface":0.003,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\crawler\\events\\resp\\activatePaymentNoticeTest::testGetMethodInterface":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferPa":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferAmount":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\crawler\\methods\\req\\activatePaymentNoticeTest::testIsBollo":0.003,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferPa":0.001,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferAmount":0.001,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testIsBollo":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testIsFaultEvent":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetFaultCode":0,"pagopa\\crawler\\methods\\resp\\activatePaymentNoticeTest::testGetFaultString":0,"pagopa\\process\\normal\\T0001::testCorrectInfoTransaction":0.009,"pagopa\\process\\normal\\T0001::testCorrectWorkflow":0,"pagopa\\process\\normal\\T0001::testCorrectReEvent":0,"pagopa\\process\\normal\\T0002::testCorrectInfoTransaction":0,"pagopa\\process\\normal\\T0002::testCorrectWorkflow":0,"pagopa\\process\\normal\\T0002::testCorrectReEvent":0,"pagopa\\process\\normal\\T0003::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0003::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0003::testCorrectReEvent":0,"pagopa\\process\\normal\\T0004::testCorrectDateEvent":0.001,"pagopa\\process\\normal\\T0004::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0004::testCorrectReEvent":0,"pagopa\\process\\normal\\T0005::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0005::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0005::testCorrectReEvent":0,"pagopa\\process\\normal\\T0006::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0006::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0006::testCorrectReEvent":0,"pagopa\\process\\normal\\T0007::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0007::testCorrectWorkflowDateEvent":0,"pagopa\\process\\normal\\T0007::testCorrectReEvent":0,"pagopa\\process\\normal\\T0008::testCorrectDateEvent":0.001,"pagopa\\process\\normal\\T0008::testCorrectReEvent":0,"pagopa\\process\\normal\\T0009::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0009::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0009::testCorrectReEvent":0,"pagopa\\process\\normal\\T0010::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0010::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0010::testCorrectReEvent":0,"pagopa\\process\\normal\\T0011::testCorrectDateEvent":0.012,"pagopa\\process\\normal\\T0011::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0011::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0011::testCorrectDetails":0.002,"pagopa\\process\\normal\\T0012::testCorrectDateEvent":0.012,"pagopa\\process\\normal\\T0012::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0012::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0012::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0013::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0013::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0013::testCorrectReEvent":0.002,"pagopa\\process\\normal\\T0013::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0014::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0014::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0014::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0014::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0015::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0015::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0015::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0015::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0016::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0016::testCorrectWorkflowDateEvent":0.002,"pagopa\\process\\normal\\T0016::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0016::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0017::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0017::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0017::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0017::testCorrectDetails":0,"pagopa\\process\\normal\\T0018::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0018::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0018::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0018::testCorrectReEvent":0.001,"pagopa\\process\\normal\\T0019::testCorrectDateEvent":0,"pagopa\\process\\normal\\T0019::testCorrectDetails":0.001,"pagopa\\process\\normal\\T0019::testCorrectWorkflowDateEvent":0.001,"pagopa\\process\\normal\\T0019::testCorrectReEvent":0.001,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\events\\req\\activatePaymentNoticeTest::testGetMethodInterface":0.005,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentsCount":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetTipoEvento":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetSottoTipoEvento":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCreditorReferenceId":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPaymentToken":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testIsValid":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetKey":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testTransaction":0,"pagopa\\events\\resp\\activatePaymentNoticeTest::testGetMethodInterface":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferPa":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferAmount":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\methods\\req\\activatePaymentNoticeTest::testIsBollo":0.003,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittenti":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetIuvs":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCcps":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetAllTokens":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetNoticeNumber":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPaEmittente":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetIuv":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCcp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetToken":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetCanale":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPsp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetPsp":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetStazione":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetBrokerPa":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetImportoTotale":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetImporto":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferPa":0.001,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferAmount":0.001,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetTransferIban":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testIsBollo":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testIsFaultEvent":0.004,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetFaultCode":0,"pagopa\\methods\\resp\\activatePaymentNoticeTest::testGetFaultString":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcps":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferId":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCcp":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetToken":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImporto":0.007,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetImportoTotale":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferAmount":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testIsBollo":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::test__construct":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIuv":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetAllTokens":0.001,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferPa":0.004,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetTransferIban":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0.002,"pagopa\\methods\\req\\nodoInviaCarrelloRPTTest::testGetIuvs":0.001,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsFaultEvent":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultCode":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferCount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetFaultString":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetIuvs":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetIuv":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferId":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetAllNoticesNumbers":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCcps":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testIsBollo":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferPa":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetImportoTotale":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetAllTokens":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetCcp":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferAmount":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetToken":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetTransferIban":0,"pagopa\\methods\\resp\\nodoInviaCarrelloRPTTest::testGetImporto":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction":0.005,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransactionDetails":0.009,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaymentToken":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCcp":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetTransferCount":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetMethodInterface":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetCcps":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuv":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIuvs":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetKey":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetIdCarrello":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testWorkflowEvent":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testIsValid":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt1Versamento":0.001,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1Rpt2Versamenti":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT2TransferEach":0.005,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testA":0.002,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction1RPT1TransferAndBollo":0.003,"pagopa\\events\\req\\nodoInviaCarrelloRPTTest::testTransaction2RPT1TransferForEachRPTMultiPa":0.005,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetTransferCount":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testIsValid":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentToken":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCcp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetKey":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetNoticeNumber":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCcps":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPsp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPsp":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetIuv":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetStazione":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetIuvs":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCanale":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetCreditorReferenceId":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetMethodInterface":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittente":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaEmittenti":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetPaymentsCount":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testGetBrokerPa":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testTransaction":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testTransactionDetails":0,"pagopa\\events\\resp\\nodoInviaCarrelloRPTTest::testWorkflow":0,"pagopa\\database\\SingleRowTest::testRemoveColumn":0,"process\\normal\\T0001::testCorrectInfoTransaction":0.058,"process\\normal\\T0001::testCorrectWorkflow":0,"process\\normal\\T0001::testCorrectReEvent":0,"tests\\process\\normal\\T0002::testCorrectInfoTransaction":0,"tests\\process\\normal\\T0002::testCorrectWorkflow":0,"tests\\process\\normal\\T0002::testCorrectReEvent":0,"tests\\process\\normal\\T0003::testCorrectDateEvent":0,"tests\\process\\normal\\T0003::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0003::testCorrectReEvent":0,"tests\\process\\normal\\T0004::testCorrectDateEvent":0.014,"tests\\process\\normal\\T0004::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0004::testCorrectReEvent":0,"tests\\process\\normal\\T0005::testCorrectDateEvent":0,"tests\\process\\normal\\T0005::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0005::testCorrectReEvent":0,"tests\\process\\normal\\T0006::testCorrectDateEvent":0,"tests\\process\\normal\\T0006::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0006::testCorrectReEvent":0,"tests\\process\\normal\\T0007::testCorrectDateEvent":0,"tests\\process\\normal\\T0007::testCorrectWorkflowDateEvent":0,"tests\\process\\normal\\T0007::testCorrectReEvent":0,"tests\\process\\normal\\T0008::testCorrectDateEvent":0.003,"tests\\process\\normal\\T0008::testCorrectReEvent":0,"tests\\process\\normal\\T0009::testCorrectDateEvent":0,"tests\\process\\normal\\T0009::testCorrectWorkflowDateEvent":0.007,"tests\\process\\normal\\T0009::testCorrectReEvent":0,"process\\normal\\T0010::testCorrectDateEvent":0,"process\\normal\\T0010::testCorrectWorkflowDateEvent":0.008,"process\\normal\\T0010::testCorrectReEvent":0,"process\\normal\\T0011::testCorrectDateEvent":0.012,"process\\normal\\T0011::testCorrectWorkflowDateEvent":0.046,"process\\normal\\T0011::testCorrectReEvent":0.054,"process\\normal\\T0011::testCorrectDetails":0.04,"process\\normal\\T0012::testCorrectDateEvent":0.013,"process\\normal\\T0012::testCorrectWorkflowDateEvent":0.059,"process\\normal\\T0012::testCorrectReEvent":0.055,"process\\normal\\T0012::testCorrectDetails":0.025,"process\\normal\\T0013::testCorrectDateEvent":0,"process\\normal\\T0013::testCorrectWorkflowDateEvent":0.041,"process\\normal\\T0013::testCorrectReEvent":0.086,"process\\normal\\T0013::testCorrectDetails":0.024,"process\\normal\\T0014::testCorrectDateEvent":0,"process\\normal\\T0014::testCorrectWorkflowDateEvent":0.049,"process\\normal\\T0014::testCorrectReEvent":0.054,"process\\normal\\T0014::testCorrectDetails":0.034,"process\\normal\\T0015::testCorrectDateEvent":0,"process\\normal\\T0015::testCorrectWorkflowDateEvent":0.049,"process\\normal\\T0015::testCorrectReEvent":0.055,"process\\normal\\T0015::testCorrectDetails":0.025,"process\\normal\\T0016::testCorrectDateEvent":0,"process\\normal\\T0016::testCorrectWorkflowDateEvent":0.055,"process\\normal\\T0016::testCorrectReEvent":0.056,"process\\normal\\T0016::testCorrectDetails":0.024,"process\\normal\\T0017::testCorrectDateEvent":0,"process\\normal\\T0017::testCorrectWorkflowDateEvent":0.005,"process\\normal\\T0017::testCorrectReEvent":0.065,"process\\normal\\T0017::testCorrectDetails":0,"process\\normal\\T0018::testCorrectDateEvent":0,"process\\normal\\T0018::testCorrectDetails":0.05,"process\\normal\\T0018::testCorrectWorkflowDateEvent":0.044,"process\\normal\\T0018::testCorrectReEvent":0.052,"process\\normal\\T0019::testCorrectDateEvent":0,"process\\normal\\T0019::testCorrectDetails":0.031,"process\\normal\\T0019::testCorrectWorkflowDateEvent":0.036,"process\\normal\\T0019::testCorrectReEvent":0.068,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithAllInfoInEvents":0.209,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutPspInfoInEvents":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptWithoutChannelInfoInEvents":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateAttemptAfterFirstAttempt":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentAfterFirstAttempt":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreatePaymentWithoutNoticeInEvent":0.001,"process\\cache\\TestAnalysisActivatePaymentNoticeReq::testCreateOnlyWorkFlow":0.001,"tests\\process\\cache\\TestAnalysisActivatePaymentNoticeResp::testInsertTransfer":0.067,"process\\crawler\\SingleActivatePaymentNoticeReq::testTransaction":0.022,"process\\crawler\\SingleActivatePaymentNoticeReq::testTransactionDetails":0.028,"process\\crawler\\SingleActivatePaymentNoticeReq::testWorkflow":0.035,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testTransaction":0.063,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testTransactionDetails":0.033,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testWorkflow":0.031,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptAllInfoInEvent::testReEvent":0,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransaction":0.018,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testTransactionDetails":0.004,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testWorkFlow":0.007,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateAttemptNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransaction":0.028,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testTransactionDetails":0.004,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testTransaction":0.015,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreatePaymentNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransaction":0.014,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\CreateNoPaymentNoInfo::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransaction":0.118,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testWorkflow":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00001_CreateAttemptAllInfoInEvent::testReEvent":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00002_CreateAttemptNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00003_CreatePaymentAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00004_CreatePaymentNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testWorkFlow":0,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00005_CreateNoPaymentNoInfo::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransaction":0.013,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testWorkflow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00006_CreateAttemptAlreadyPresentInAnotherDayAllInfo::testReEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransaction":0.013,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testWorkflow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00007_CreateAttemptAlreadyPresentInAnotherDayNotAllInfo::testReEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00008_CreatePaymentAlreadyPresenteInAnotherDayAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\SingleEvent\\T00009_CreatePaymentAlreadyPresenteInAnotherDayNotAllInfoInEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testTransactionDetails":0.006,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00011_CreateAttemptReqRespOneTransferAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00012_CreateAttemptReqRespTwoTransferAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransaction":0.013,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotallInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransaction":0.131,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotallInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransaction":0.012,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00013_CreateAttemptReqRespOneTransferNotAllInfoEvent::testEvent":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransaction":0.019,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testTransactionDetails":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testWorkFlow":0.002,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00014_CreateAttemptReqRespTwoTransferNotAllInfoEvent::testEvent":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransaction":0.011,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testTransactionDetails":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testWorkFlow":0.001,"process\\crawler\\activatePaymentNotice\\BothEvents\\T00015_CreatePaymentReqRespWithAllInfoAndFaultCode::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00020_CreateAttemptOneRPTOneTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00021_CreateAttemptOneRPTTwoTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransaction":0.011,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00022_CreateAttemptTwoRPTTwoTransfer::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransaction":0.011,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testTransactionDetails":0.007,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\SingleEvent\\T00023_CreateAttemptTwoRPTFirstRpt2TransferSecondRpt2Transfer1Bollo::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00024_CreateAttemptOneRPT1TransferSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00025_CreateAttemptOneRPT2TransferSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransaction":0.013,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testTransactionDetails":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testWorkFlow":0.005,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttempTwoRPTTwoTransferForRPTSameData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":0.013,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":0.004,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttempTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransaction":0.095,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":0.006,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttempOneoRPTTwoTransferWithFaultCodeInResponse::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransaction":0.046,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransactionDetails":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttempOneRPTTwoTransferWithSessionIdOriginalNotFound::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testTransaction":0.011,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testWorkFlow":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00026_CreateAttemptTwoRPTTwoTransferForRPTSameData::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransaction":0.011,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testTransactionDetails":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testWorkFlow":0.003,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00027_CreateAttemptTwoRPTTwoTransferForRPTWithResponseDifferentData::testEvent":0.002,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00028_CreateAttemptOneRPTTwoTransferWithFaultCodeInResponse::testEvent":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransaction":0.01,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testTransactionDetails":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testWorkFlow":0.001,"process\\crawler\\nodoInviaCarrelloRPT\\BothEvents\\T00029_CreateAttemptOneRPTTwoTransferWithSessionIdOriginalNotFound::testEvent":0.001}} \ No newline at end of file