SlideShare uma empresa Scribd logo
1 de 38
Baixar para ler offline
Software Testing
Wallace Reis | wreis
Tuesday, October 08, 2013
Software Testing
Wallace Reis | wreis
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Development
processes
Tuesday, October 08, 2013
Perl Testing?
Tuesday, October 08, 2013
CPAN:
*modules;
*frameworks;
*and toolkits;
Tuesday, October 08, 2013
Testing methods
Tuesday, October 08, 2013
Black-box
Tuesday, October 08, 2013
Input Output
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
use_ok 'Module';
ok(my $test = Module->new);
ok($test->sum(1,2) == 3);
ok($test->sum(3,2) == 5);
done_testing;
Tuesday, October 08, 2013
White-box
Tuesday, October 08, 2013
sub sum {
my ( $self, $x, $y ) = @_;
return undef
unless defined $x && defined $y;
if ( $x == 0 ) {
return $y;
}
elsif ( $y == 0 ) {
return $x;
}
else {
return $x + $y;
}
}
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
use_ok 'Module';
ok(my $test = Module->new);
ok($test->sum(0,2) == 2);
ok($test->sum(1,0) == 1);
ok(!$test->sum(1));
ok(!$test->sum());
done_testing;
Tuesday, October 08, 2013
Testing levels
Tuesday, October 08, 2013
Unit
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
my $search_comp;
BEGIN {
use_ok 'I5::123people::Website';
$search_comp = 'I5::123people::Website::Model::Search';
use_ok $search_comp;
}
foreach my $source ( qw{http://foo.bar.com https://foo.bar.com/
ftp://foo.bar.com ftps://foo.bar.com/ ftp://wreis@foo.bar.com/
ftp://wreis:passwd@foo.bar.com/}
) {
is($search_comp->extract_domain($source), 'foo.bar.com');
}
# ...
done_testing;
Tuesday, October 08, 2013
Mock objects
and
Method stubs
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
use MooseX::Declare;
my $class = class extends Catalyst::Model
with Catalyst::Component::InstancePerRequest
{
has balance => ( ... );
method deposit (Num $amount) {
$self->balance( $self->balance + $amount );
}
method get_session_id { return ‘maow98ua92’ }
};
ok($class->name->new);
my $role = role { ... };
#...
done_testing;
Tuesday, October 08, 2013
Integration
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
use Test::WWW:::Mechanize;
my $data = {
name => 'MyFoo',
description => 'MyFoo é uma...',
};
my $mech = Test::WWW::Mechanize->new;
$mech->get_ok('/foo');
$mech->submit_form_ok({
with_fields => $data,
button => 'submit',
}, 'form submit...');
$mech->content_contains($data->{$_})
for qw/name description/;
# ...
done_testing;
Tuesday, October 08, 2013
Regression
Tuesday, October 08, 2013
Acceptance
Tuesday, October 08, 2013
use strict;
use warnings;
use Test::More;
use lib 't/lib';
use PeopleTest;
my $people_test = PeopleTest->new;
$people_test->log_disable('error');
my $mech = $people_test->get_mech;
check_error_400('/a8i2k282543jwd09awdj', 404);
check_error_400('/page/a8i2k282543jwd09awdj', 404);
sub check_error_400 {
my ( $path, $code ) = @_;
my $res = $mech->get($path);
ok($res->code == $code) or diag($res->code);
is($res->header('Pragma'), 'no-cache');
is($res->header('Cache-Control'), 'no-cache');
ok(defined $res->header('X-Robots-Tag'));
like($res->content, qr{meta.*robots.*noindex}i);
}
done_testing;
Tuesday, October 08, 2013
User acceptance
Tuesday, October 08, 2013
Platform
Tuesday, October 08, 2013
$ CATALYST_SERVER=‘http://
localhost:3000/’ prove -lr t
$ CATALYST_SERVER=‘http://www.
123people.biz/’ prove -lr t
$ CATALYST_SERVER=‘http://www.
123people.com/’ prove -lr t
Tuesday, October 08, 2013
Coverage
Tuesday, October 08, 2013
Devel::Cover
Tuesday, October 08, 2013
Tuesday, October 08, 2013
More info...
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Tuesday, October 08, 2013
Thank you!
Discussion?
Tuesday, October 08, 2013

Mais conteúdo relacionado

Mais procurados

Advanced php testing in action
Advanced php testing in actionAdvanced php testing in action
Advanced php testing in actionJace Ju
 
Lazy evaluation drupal camp moscow 2014
Lazy evaluation drupal camp moscow 2014Lazy evaluation drupal camp moscow 2014
Lazy evaluation drupal camp moscow 2014Evgeny Nikitin
 
Tulsa techfest2010 security
Tulsa techfest2010   securityTulsa techfest2010   security
Tulsa techfest2010 securityJason Ragsdale
 
PHP Traits
PHP TraitsPHP Traits
PHP Traitsmattbuzz
 
Data::FormValidator Simplified
Data::FormValidator SimplifiedData::FormValidator Simplified
Data::FormValidator SimplifiedFred Moyer
 
Command Bus To Awesome Town
Command Bus To Awesome TownCommand Bus To Awesome Town
Command Bus To Awesome TownRoss Tuck
 
Things I Believe Now That I'm Old
Things I Believe Now That I'm OldThings I Believe Now That I'm Old
Things I Believe Now That I'm OldRoss Tuck
 
Event sourcing w PHP (by Piotr Kacała)
Event sourcing w PHP (by Piotr Kacała)Event sourcing w PHP (by Piotr Kacała)
Event sourcing w PHP (by Piotr Kacała)GOG.com dev team
 
Upgrade your javascript to drupal 8
Upgrade your javascript to drupal 8Upgrade your javascript to drupal 8
Upgrade your javascript to drupal 8Théodore Biadala
 
PHP Data Objects
PHP Data ObjectsPHP Data Objects
PHP Data ObjectsWez Furlong
 
Django - Know Your Namespace: Middleware
Django - Know Your Namespace: MiddlewareDjango - Know Your Namespace: Middleware
Django - Know Your Namespace: Middlewarehowiworkdaily
 
購物車程式架構簡介
購物車程式架構簡介購物車程式架構簡介
購物車程式架構簡介Jace Ju
 
PhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsPhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsBastian Feder
 
Introduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingIntroduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingSamuel ROZE
 

Mais procurados (20)

Closure
ClosureClosure
Closure
 
Advanced php testing in action
Advanced php testing in actionAdvanced php testing in action
Advanced php testing in action
 
Ext oo
Ext ooExt oo
Ext oo
 
Lazy evaluation drupal camp moscow 2014
Lazy evaluation drupal camp moscow 2014Lazy evaluation drupal camp moscow 2014
Lazy evaluation drupal camp moscow 2014
 
What Is Security
What Is SecurityWhat Is Security
What Is Security
 
Tulsa techfest2010 security
Tulsa techfest2010   securityTulsa techfest2010   security
Tulsa techfest2010 security
 
PHP Traits
PHP TraitsPHP Traits
PHP Traits
 
Data::FormValidator Simplified
Data::FormValidator SimplifiedData::FormValidator Simplified
Data::FormValidator Simplified
 
Command Bus To Awesome Town
Command Bus To Awesome TownCommand Bus To Awesome Town
Command Bus To Awesome Town
 
Javascript - Beyond-jQuery
Javascript - Beyond-jQueryJavascript - Beyond-jQuery
Javascript - Beyond-jQuery
 
Things I Believe Now That I'm Old
Things I Believe Now That I'm OldThings I Believe Now That I'm Old
Things I Believe Now That I'm Old
 
Event sourcing w PHP (by Piotr Kacała)
Event sourcing w PHP (by Piotr Kacała)Event sourcing w PHP (by Piotr Kacała)
Event sourcing w PHP (by Piotr Kacała)
 
Php 101: PDO
Php 101: PDOPhp 101: PDO
Php 101: PDO
 
Upgrade your javascript to drupal 8
Upgrade your javascript to drupal 8Upgrade your javascript to drupal 8
Upgrade your javascript to drupal 8
 
PHP Data Objects
PHP Data ObjectsPHP Data Objects
PHP Data Objects
 
Django - Know Your Namespace: Middleware
Django - Know Your Namespace: MiddlewareDjango - Know Your Namespace: Middleware
Django - Know Your Namespace: Middleware
 
購物車程式架構簡介
購物車程式架構簡介購物車程式架構簡介
購物車程式架構簡介
 
PhpUnit - The most unknown Parts
PhpUnit - The most unknown PartsPhpUnit - The most unknown Parts
PhpUnit - The most unknown Parts
 
Introduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingIntroduction to CQRS and Event Sourcing
Introduction to CQRS and Event Sourcing
 
Alert
AlertAlert
Alert
 

Destaque

Uso etico y moral de las tecnologias de informacion
Uso etico y moral de las tecnologias de informacionUso etico y moral de las tecnologias de informacion
Uso etico y moral de las tecnologias de informacionJavier Balan
 
A reviravolta do desenvolvimento web
A reviravolta do desenvolvimento webA reviravolta do desenvolvimento web
A reviravolta do desenvolvimento webWallace Reis
 
Challenges of Monetary Policy Communication
Challenges of Monetary Policy CommunicationChallenges of Monetary Policy Communication
Challenges of Monetary Policy CommunicationKelvin Kizito Kiyingi
 
Cônicas e parábolas phdnet
Cônicas e parábolas   phdnetCônicas e parábolas   phdnet
Cônicas e parábolas phdnetJeremias Barreto
 
L5 assignment: How to integrate the modern 70 year-old into a connected society.
L5 assignment: How to integrate the modern 70 year-old into a connected society.L5 assignment: How to integrate the modern 70 year-old into a connected society.
L5 assignment: How to integrate the modern 70 year-old into a connected society.Agustín Schelstraete
 
European union: a quick explaination
European union: a quick explainationEuropean union: a quick explaination
European union: a quick explainationStefan van der Weide
 
week4-measuring data
week4-measuring dataweek4-measuring data
week4-measuring dataispkosova
 
Windows 8 Presentation for Mobile 101 - Thinslices
Windows 8 Presentation for Mobile 101 - ThinslicesWindows 8 Presentation for Mobile 101 - Thinslices
Windows 8 Presentation for Mobile 101 - ThinslicesBujdea Bogdan
 
Money Museums As Tools For Economic Education
Money Museums As Tools For Economic EducationMoney Museums As Tools For Economic Education
Money Museums As Tools For Economic EducationKelvin Kizito Kiyingi
 
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)Proposal rehearsal sze_chuliu 1021216(ver. 2.1)
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)思竹 劉
 
áLbum fotográfico EAD
áLbum fotográfico EADáLbum fotográfico EAD
áLbum fotográfico EADjosenagel_34
 
Miguel s anchez
Miguel s anchezMiguel s anchez
Miguel s anchezJa'r R'oz
 
Week3 intro to computer (history of comps, comps in everyday life)
Week3   intro to computer (history of comps, comps in everyday life)Week3   intro to computer (history of comps, comps in everyday life)
Week3 intro to computer (history of comps, comps in everyday life)ispkosova
 
Presentation(ii)劉思竹v2.1
Presentation(ii)劉思竹v2.1Presentation(ii)劉思竹v2.1
Presentation(ii)劉思竹v2.1思竹 劉
 

Destaque (20)

Tic’s y enfermería
Tic’s y enfermeríaTic’s y enfermería
Tic’s y enfermería
 
Uso etico y moral de las tecnologias de informacion
Uso etico y moral de las tecnologias de informacionUso etico y moral de las tecnologias de informacion
Uso etico y moral de las tecnologias de informacion
 
A reviravolta do desenvolvimento web
A reviravolta do desenvolvimento webA reviravolta do desenvolvimento web
A reviravolta do desenvolvimento web
 
Alertamerica2012
Alertamerica2012Alertamerica2012
Alertamerica2012
 
Challenges of Monetary Policy Communication
Challenges of Monetary Policy CommunicationChallenges of Monetary Policy Communication
Challenges of Monetary Policy Communication
 
Cônicas e parábolas phdnet
Cônicas e parábolas   phdnetCônicas e parábolas   phdnet
Cônicas e parábolas phdnet
 
L5 assignment: How to integrate the modern 70 year-old into a connected society.
L5 assignment: How to integrate the modern 70 year-old into a connected society.L5 assignment: How to integrate the modern 70 year-old into a connected society.
L5 assignment: How to integrate the modern 70 year-old into a connected society.
 
European union: a quick explaination
European union: a quick explainationEuropean union: a quick explaination
European union: a quick explaination
 
My Presentation
My PresentationMy Presentation
My Presentation
 
IDEO U - Final project
IDEO U - Final projectIDEO U - Final project
IDEO U - Final project
 
week4-measuring data
week4-measuring dataweek4-measuring data
week4-measuring data
 
Windows 8 Presentation for Mobile 101 - Thinslices
Windows 8 Presentation for Mobile 101 - ThinslicesWindows 8 Presentation for Mobile 101 - Thinslices
Windows 8 Presentation for Mobile 101 - Thinslices
 
Money Museums As Tools For Economic Education
Money Museums As Tools For Economic EducationMoney Museums As Tools For Economic Education
Money Museums As Tools For Economic Education
 
Actividad 14
Actividad 14Actividad 14
Actividad 14
 
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)Proposal rehearsal sze_chuliu 1021216(ver. 2.1)
Proposal rehearsal sze_chuliu 1021216(ver. 2.1)
 
áLbum fotográfico EAD
áLbum fotográfico EADáLbum fotográfico EAD
áLbum fotográfico EAD
 
Miguel s anchez
Miguel s anchezMiguel s anchez
Miguel s anchez
 
Week3 intro to computer (history of comps, comps in everyday life)
Week3   intro to computer (history of comps, comps in everyday life)Week3   intro to computer (history of comps, comps in everyday life)
Week3 intro to computer (history of comps, comps in everyday life)
 
Ya soy grande
Ya soy grandeYa soy grande
Ya soy grande
 
Presentation(ii)劉思竹v2.1
Presentation(ii)劉思竹v2.1Presentation(ii)劉思竹v2.1
Presentation(ii)劉思竹v2.1
 

Semelhante a Software Testing

Mocking Dependencies in PHPUnit
Mocking Dependencies in PHPUnitMocking Dependencies in PHPUnit
Mocking Dependencies in PHPUnitmfrost503
 
Test in action week 4
Test in action   week 4Test in action   week 4
Test in action week 4Yi-Huan Chan
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Bernhard Schussek
 
Magento Attributes - Fresh View
Magento Attributes - Fresh ViewMagento Attributes - Fresh View
Magento Attributes - Fresh ViewAlex Gotgelf
 
Intro To Moose
Intro To MooseIntro To Moose
Intro To MoosecPanel
 
Unit testing with zend framework PHPBenelux
Unit testing with zend framework PHPBeneluxUnit testing with zend framework PHPBenelux
Unit testing with zend framework PHPBeneluxMichelangelo van Dam
 
Unit testing with zend framework tek11
Unit testing with zend framework tek11Unit testing with zend framework tek11
Unit testing with zend framework tek11Michelangelo van Dam
 
Php unit the-mostunknownparts
Php unit the-mostunknownpartsPhp unit the-mostunknownparts
Php unit the-mostunknownpartsBastian Feder
 
Bag Of Tricks From Iusethis
Bag Of Tricks From IusethisBag Of Tricks From Iusethis
Bag Of Tricks From IusethisMarcus Ramberg
 
From typing the test to testing the type
From typing the test to testing the typeFrom typing the test to testing the type
From typing the test to testing the typeWim Godden
 
Coding for Scale and Sanity
Coding for Scale and SanityCoding for Scale and Sanity
Coding for Scale and SanityJimKellerES
 
The secret unit testing tools no one has ever told you about
The secret unit testing tools no one has ever told you aboutThe secret unit testing tools no one has ever told you about
The secret unit testing tools no one has ever told you aboutDror Helper
 
Power shell voor developers
Power shell voor developersPower shell voor developers
Power shell voor developersDennis Vroegop
 

Semelhante a Software Testing (20)

Mocking Dependencies in PHPUnit
Mocking Dependencies in PHPUnitMocking Dependencies in PHPUnit
Mocking Dependencies in PHPUnit
 
PHP Unit Testing
PHP Unit TestingPHP Unit Testing
PHP Unit Testing
 
Test in action week 4
Test in action   week 4Test in action   week 4
Test in action week 4
 
Best Practice Testing with Lime 2
Best Practice Testing with Lime 2Best Practice Testing with Lime 2
Best Practice Testing with Lime 2
 
Stub you!
Stub you!Stub you!
Stub you!
 
Test driven development_for_php
Test driven development_for_phpTest driven development_for_php
Test driven development_for_php
 
Perl object ?
Perl object ?Perl object ?
Perl object ?
 
Magento Attributes - Fresh View
Magento Attributes - Fresh ViewMagento Attributes - Fresh View
Magento Attributes - Fresh View
 
Unit testing zend framework apps
Unit testing zend framework appsUnit testing zend framework apps
Unit testing zend framework apps
 
Intro To Moose
Intro To MooseIntro To Moose
Intro To Moose
 
Daily notes
Daily notesDaily notes
Daily notes
 
Unit testing with zend framework PHPBenelux
Unit testing with zend framework PHPBeneluxUnit testing with zend framework PHPBenelux
Unit testing with zend framework PHPBenelux
 
Unit testing with zend framework tek11
Unit testing with zend framework tek11Unit testing with zend framework tek11
Unit testing with zend framework tek11
 
Php unit the-mostunknownparts
Php unit the-mostunknownpartsPhp unit the-mostunknownparts
Php unit the-mostunknownparts
 
Bag Of Tricks From Iusethis
Bag Of Tricks From IusethisBag Of Tricks From Iusethis
Bag Of Tricks From Iusethis
 
Drupal 7 Queues
Drupal 7 QueuesDrupal 7 Queues
Drupal 7 Queues
 
From typing the test to testing the type
From typing the test to testing the typeFrom typing the test to testing the type
From typing the test to testing the type
 
Coding for Scale and Sanity
Coding for Scale and SanityCoding for Scale and Sanity
Coding for Scale and Sanity
 
The secret unit testing tools no one has ever told you about
The secret unit testing tools no one has ever told you aboutThe secret unit testing tools no one has ever told you about
The secret unit testing tools no one has ever told you about
 
Power shell voor developers
Power shell voor developersPower shell voor developers
Power shell voor developers
 

Último

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 

Último (20)

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

Software Testing