SlideShare ist ein Scribd-Unternehmen logo
1 von 161
Downloaden Sie, um offline zu lesen
Test Your Shit



Friday, July 22, 11
Test Your Shit
                           ...please




Friday, July 22, 11
bob remeika



Friday, July 22, 11
foobarfighter
                      (twitter, github and freenode)




Friday, July 22, 11
i work at




Friday, July 22, 11
larry wall is my jesus



Friday, July 22, 11
so testing...



Friday, July 22, 11
so testing... why?



Friday, July 22, 11
your codebase will
                            evolve


Friday, July 22, 11
your priorities will
                           change


Friday, July 22, 11
but you already knew
                              that


Friday, July 22, 11
that means your code
                           will change



Friday, July 22, 11
that means your code
                           will change
                              often




Friday, July 22, 11
so what are you going
                         to do about it?


Friday, July 22, 11
some of you will do
                           nothing


Friday, July 22, 11
you will fail



Friday, July 22, 11
unless you’re
                      facebook ;-)


Friday, July 22, 11
you’re not facebook



Friday, July 22, 11
you will hire new
                          people


Friday, July 22, 11
they will break things



Friday, July 22, 11
tests help them ramp
                                up


Friday, July 22, 11
better codez



Friday, July 22, 11
tests force decoupling



Friday, July 22, 11
separate the shit out of
                          those concerns


Friday, July 22, 11
tests at yammer
                          a brief case study




Friday, July 22, 11
just ship™



Friday, July 22, 11
just ship™
                      we launch features... not tests




Friday, July 22, 11
features are why we are
                       having success


Friday, July 22, 11
but things are changing



Friday, July 22, 11
stability matters



Friday, July 22, 11
speed matters



Friday, July 22, 11
quality matters



Friday, July 22, 11
we share code
                        internally


Friday, July 22, 11
we have a lot of paying
                         customers now


Friday, July 22, 11
they are enterprises



Friday, July 22, 11
breaking them is not
                              cool


Friday, July 22, 11
‘this.updateMessageList’
                           is not a method



Friday, July 22, 11
‘this.updateMessageList’
                           is not a method
                         you didn’t even run that code????????!?!!?!




Friday, July 22, 11
how could we have
                         caught that?



Friday, July 22, 11
how could we have
                         caught that?
                       we only had three javascript engineers




Friday, July 22, 11
our codebase was
                           growing


Friday, July 22, 11
we needed to be more
                             stable


Friday, July 22, 11
we needed some
                          controls


Friday, July 22, 11
we needed some more
                              beer


Friday, July 22, 11
so now we have tests



Friday, July 22, 11
(insert graph)



Friday, July 22, 11
fewer face palms



Friday, July 22, 11
better reliability



Friday, July 22, 11
improved new
                      employee ramp up


Friday, July 22, 11
fearless refactoring



Friday, July 22, 11
because we rarely get it
                        right the first time


Friday, July 22, 11
so testing...



Friday, July 22, 11
so testing... how?



Friday, July 22, 11
i can’t cover everything



Friday, July 22, 11
stop!



Friday, July 22, 11
go!



Friday, July 22, 11
you need a ci
                      environment


Friday, July 22, 11
you might need unit
                             tests


Friday, July 22, 11
you definitely need
                        functional tests


Friday, July 22, 11
(c)ontinuous
                      (i)ntegration


Friday, July 22, 11
i’m a street light




                       hi, i’m paul                        hi my name is peter




                      we have this setup at yammer


Friday, July 22, 11
if you are writing tests
                          for the browser


Friday, July 22, 11
require(‘saucelabs’)



Friday, July 22, 11
use your vc money



Friday, July 22, 11
we use saucelabs at
                           yammer


Friday, July 22, 11
Friday, July 22, 11
because it is awesome



Friday, July 22, 11
awesomesauce



Friday, July 22, 11
how do you know if
                      you need unit tests?


Friday, July 22, 11
Friday, July 22, 11
unit tests



Friday, July 22, 11
convenience to the
                          developer


Friday, July 22, 11
convenience to the
                        next developer


Friday, July 22, 11
writing libraries



Friday, July 22, 11
require(‘unit tests’)
                            // doesn’t run




Friday, July 22, 11
require(‘foounit’)
                       // totally runs... teh asum




Friday, July 22, 11
foounit
                       a brief intro




Friday, July 22, 11
another javascript test
                           framework



Friday, July 22, 11
another javascript test
                           framework
                                really?




Friday, July 22, 11
... ya but



Friday, July 22, 11
it has some lofty goals



Friday, July 22, 11
cross host



Friday, July 22, 11
test shared code on
                          client/server



Friday, July 22, 11
test shared code on
                          client/server
                        these shenanigans exist at yammer




Friday, July 22, 11
test shared code on
                          client/server
                        these shenanigans exist at yammer
                        i’m not gonna lie, this is hard to do




Friday, July 22, 11
beautiful syntax



Friday, July 22, 11
not owned by the man



Friday, July 22, 11
where it’s going



Friday, July 22, 11
great ehraaahs



Friday, July 22, 11
great doc generation



Friday, July 22, 11
jellyfish integration



Friday, July 22, 11
ui sandboxing



Friday, July 22, 11
easy to use ui



Friday, July 22, 11
turn into a jet and fly
                          into the sun


Friday, July 22, 11
var f = require(‘foounit’).globalize();

                  describe(‘this is a group’, function (){
                    it(‘has a test’, function (){
                      expect(myTest).to(runEverywhere);
                    });
                  });

                  f.run();


Friday, July 22, 11
it’s a lot like jasmine



Friday, July 22, 11
it’s a lot like jasmine
                           there’s reasons for that




Friday, July 22, 11
check it out
                        http://foounit.org




Friday, July 22, 11
functional tests



Friday, July 22, 11
test end result



Friday, July 22, 11
test your application



Friday, July 22, 11
test what the user sees



Friday, July 22, 11
require(‘jellyfish’)



Friday, July 22, 11
h8rz g0n h8



Friday, July 22, 11
h8rz g0n h8
                        testing fallacies




Friday, July 22, 11
fallacy #1



Friday, July 22, 11
people will tell you that
                       you don’t need tests


Friday, July 22, 11
let’s analyze that



Friday, July 22, 11
successful open source
                        projects have tests


Friday, July 22, 11
rails



Friday, July 22, 11
one million tests



Friday, July 22, 11
jquery



Friday, July 22, 11
1336 tests



Friday, July 22, 11
dojo



Friday, July 22, 11
1337 tests



Friday, July 22, 11
1337 tests
                      one more than jquery cause it’s better




Friday, July 22, 11
1337 tests
                      one more than jquery cause it’s better
                                      l337




Friday, July 22, 11
you want to be
                      successful, right?



Friday, July 22, 11
you want to be
                      successful, right?
                          write tests




Friday, July 22, 11
if you really care about
                            the numbers



Friday, July 22, 11
if you really care about
                            the numbers
                           you can run the suites yourself




Friday, July 22, 11
fallacy #2



Friday, July 22, 11
you don’t need to test
                           view code



Friday, July 22, 11
you don’t need to test
                           view code
                         if your ‘view code’ is just html... cool




Friday, July 22, 11
you don’t need to test
                           view code
                          if your ‘view code’ is just html... cool
                        but you are building a big client side app




Friday, July 22, 11
do you consider jquery
                      to be just ‘view code’?


Friday, July 22, 11
no



Friday, July 22, 11
it has a lot of tests



Friday, July 22, 11
because it’s
                      complicated


Friday, July 22, 11
complex ui interactions
                      are not just ‘view code’


Friday, July 22, 11
fallacy #3



Friday, July 22, 11
tests slow you down



Friday, July 22, 11
until the next guy
                       needs to change
                          something


Friday, July 22, 11
until you spend hours
                            face palming


Friday, July 22, 11
until you need to test
                        error conditions


Friday, July 22, 11
fallacy #4



Friday, July 22, 11
you need 100%
                         coverage


Friday, July 22, 11
you aren’t building the
                          space shuttle


Friday, July 22, 11
you don’t even need
                             90%


Friday, July 22, 11
you need enough to
                      help you refactor with
                            confidence


Friday, July 22, 11
it’s hard to find the
                             balance


Friday, July 22, 11
but you should try



Friday, July 22, 11
what’s a good unit test?



Friday, July 22, 11
tdd/bdd dictates that
                         you should test
                           everything


Friday, July 22, 11
sure you can do that



Friday, July 22, 11
... if you have that
                              culture


Friday, July 22, 11
i’m looking at you
                            pivots


Friday, July 22, 11
but there are
                      diminishing returns


Friday, July 22, 11
this.prototype.start = function (){
                        if (this.isStarted()){ return; }
                        this._start()
                      }




Friday, July 22, 11
find a happy place

Friday, July 22, 11
some things are hard to
                               test


Friday, July 22, 11
your mileage will vary



Friday, July 22, 11
emulating xhr



Friday, July 22, 11
multi-step interactions



Friday, July 22, 11
consider integration
                             tests


Friday, July 22, 11
mock services ftw



Friday, July 22, 11
please talk to me



Friday, July 22, 11
or contact me online



Friday, July 22, 11
i actually like people



Friday, July 22, 11
foobarfighter
                      (twitter, github and freenode)




Friday, July 22, 11
foounit
                      http://foounit.org




Friday, July 22, 11

Weitere ähnliche Inhalte

Mehr von Sauce Labs

Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsUsing Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsSauce Labs
 
How Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionHow Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionSauce Labs
 
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartWebinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartSauce Labs
 
[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.ioSauce Labs
 
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Sauce Labs
 
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterAccelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterSauce Labs
 
How to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingHow to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingSauce Labs
 
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...Sauce Labs
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test AutomationSauce Labs
 
Sauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs
 
BDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiBDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiSauce Labs
 
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Sauce Labs
 
Continuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaContinuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaSauce Labs
 
Building Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleBuilding Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleSauce Labs
 
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanAutomated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanSauce Labs
 
Building The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamBuilding The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamSauce Labs
 
What's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesWhat's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesSauce Labs
 
Wait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshWait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshSauce Labs
 
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraUsing Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraSauce Labs
 
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...Sauce Labs
 

Mehr von Sauce Labs (20)

Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsUsing Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
 
How Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionHow Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product Obsession
 
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartWebinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
 
[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io
 
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
 
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterAccelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
 
How to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingHow to Measure Success in Continuous Testing
How to Measure Success in Continuous Testing
 
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation
 
Sauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software Testing
 
BDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiBDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu Peteti
 
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
 
Continuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaContinuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa Benua
 
Building Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleBuilding Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny Bramble
 
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanAutomated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
 
Building The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamBuilding The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha Viswalingam
 
What's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesWhat's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie Jones
 
Wait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshWait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy Walsh
 
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraUsing Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
 
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
 

Kürzlich hochgeladen

Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 

Kürzlich hochgeladen (20)

Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 

Testing at Yammer with FooUnit, Jellyfish, and Sauce Labs