Skip to content
  • Blog
  • Events
  • Help
  • Careers
  • Contact
New Signature
  • About
      • Company

        Cognizant Microsoft Business Group is dedicated to changing the way businesses innovate, transform and run based on a unique cloud operating model. You will now be redirected to our new microsite to learn more.

        View Company

      • Awards

        As a company, we are regularly recognized within the IT industry as well as the communities we serve.

        View All Awards
      • News

        Read the most up-to-date corporate announcements, Microsoft technology updates, innovative business solutions and learn more about how the Cognizant Microsoft Business Group can take your business even farther.

        View News

      • Partners

        New Signature works with a number of outstanding technology companies to deliver the best experiences to our customers.

        View Partners
      • Leadership

        Cognizant Microsoft Business Group’s executive team is comprised of innovative leaders with proven experience and deep industry expertise. You will now be redirected to our new microsite to learn more.

        View Leadership

      • Industries

        Our solutions are tailored to empower organizations across a wide range
        of industries.

        View Industry Experience
    Close
  • Solutions
      • Intelligent Enterprise
        Solutions

        Going Digital
        Unleash cloud capability, deliver change and compete at speed with a Microsoft digital operating model, enabling you to work more efficiently as you transform your IT environment. Learn More

      • Featured Solution

        Secure Cloud
        In a world of constant threat, ensuring that your underlying cloud platform is protected is the first step on your organization’s journey towards a secure, compliant operating environment. Learn More
      • Intelligent Workplace
        Solutions

      • Secure Workplace

        Work Anywhere

        Endpoint Health

        Identity Health

        Teamwork Support



        VIEW WORKPLACE SOLUTIONS
      • Intelligent Cloud
        Solutions

      • App Factory

        Azure Accelerator

        Azure Launchpad

        Azure Launchpad for DevOps

        Application Health

        Platform Health

        VIEW ClOUD SOLUTIONS
    Close
  • Services
      • Begin your journey towards becoming a digital business with GO, our unique end-to-end framework based on the Microsoft Cloud Adoption Framework.

        GO DIGITAL OPERATING MODEL
      • Intelligent Enterprise

      • Consulting

        We go beyond just technology to help your organization understand how digital can help you uniquely differentiate and better serve your employees and customers.

        VIEW ENTERPRISE SERVICES
      • Intelligent Workplace

        • Identity

          Identity is your new first-line-of-defense. It’s vital to your users and clients that your identity platform is properly configured and secured.

          Endpoint

          Whether your devices are on-premises or remote, personal or business-owned, we can ensure they are properly managed and protected.

          Teamwork

          Today’s workforce is collaborating than ever before.  We can empower your current teams with tomorrow’s progressive technologies.

          VIEW WORKPLACE SERVICES
        • Intelligent Cloud

          • Platform

            The cloud is no longer some future-state. It’s the here and now. Adopting a cloud-first platform is one of the best ways to maintain a future-proofed competitive advantage.

            Applications

            We build cloud-native apps and modernize legacy systems with the power of Azure to give your organization a competitive edge.

            Data

            We can help your organization create secure, scalable data platforms to deliver simpler and more sophisticated insights to your business.

            VIEW CLOUD SERVICES
        Close
      • Client Stories
          • Case Studies

            Browse a comprehensive list of companies who have created successful partnerships and experienced transformative solutions with New Signature.

            View All Case Studies

          • Featured Case Study TalkTalk Modern Workplace

            New Signature worked with TalkTalk to define a new Modern Workplace solution based on Microsoft 365, which kept the user firmly at the center of the transformation.
            View Case Study

          • Testimonials

            We love transforming our customers businesses, take a look at what they have to say about New Signature.

            View Testimonials

          • Featured Testimonial Davis Construction

            With New Signature’s help, Davis was able to take a progressive step forward by migrating their private branch exchange (PBX) phone system to a Voice of Internet Protocol (VoIP) system.
            View Testimonial

        Close
      • Explore
          • Guides & Ebooks

            Dive deeper into education with your team by leveraging our expert-developed guides and eBooks.

            View All Guides & Ebooks

          • Infographics

            Rich with statistics and information, our infographics are great tools for quick but insightful learning.

            View All Infographics
          • Podcast: Office Explorers

            Join Kat and Rob monthly as they chat with New Signature experts and explore the world of O365.

            Listen to Podcasts

          • Videos

            Visit our videos stream to access recorded webinars, service information and to learn more about us.

            WATCH ALL VIDEOS
          • Flyers

            Searching for information about our services? Our flyers are a great takeaway for all those details.

            VIEW ALL FLYERS

          • Featured Stream

            Learn more about the tooling and expertise required to unlock productivity and mobilize your teams.

            MODERN WORKPLACE
        Close
        Close
      Blog

      Quality Assurance in a DevOps World

      New Signature / Blog / Quality Assurance in a DevOps World
      December 27, 2019December 17, 2019| Ryan Buchanan

      DevOps is a journey.  While many people focus purely on releasing more frequently or adopting new tools, often the more important part of the process is the culture shift required to truly embrace DevOps principles.  In my experience, Quality Assurance (QA) teams can be resistant to these changes.  While it may require a change in how testing is done, enabling continuous testing inside your CI/CD pipelines can free quality assurance engineers up for the tasks they are best suited for.

      Continuous Testing

      Any effort to create CI/CD pipelines for an organization should include testing.  The most common cases run in these pipelines are unit tests.  These are incredibly valuable and should not be overlooked, but these are not the only tests that can be run continuously.  Any repetitive tests with predictable results are prime targets for automation.  Manually running test cases can be tedious and time consuming.  This can lead to mistakes or important steps being skipped.  More importantly, this is a poor use of a QA engineer’s time.  Repetitive tasks are what computers excel at.  Converting your organization’s integration and acceptance tests can increase confidence in your code while reducing burden on the QA team.

      What to Convert?

      Saying automating your tests is a good idea is one thing, but it’s unlikely you will be able to convert your manual test cases to automated ones overnight.  When deciding what to convert, you will want to focus on the lowest barrier for entry and the highest impact.  Unit tests are top priority.  They answer the basic question of “does this section of code do what I intended?” and are often already part of development’s process.  Next would be integration tests of the various subsystems to your application.  Even in an application has a user interface there are often APIs, databases, or other systems that do most of the actual logic.  Wrapping these in functional tests can give you confidence in your system without touching the front end.  User interaction automation is often the most difficult to automate but is often the best way to truly end to end tests your application.  These should focus on the most basic end to end tests first, relying on your other tests to cover edge cases.

      How to Automate?

      There are many tools in the marketplace to help with testing.  Many of them promise to enable automation with limited coding.  Your success may vary, but as a rule the more control over your process you have the better.  With limited set up any programming or scripting language can be effective for testing.  Often it can be efficient to create these in same language your code is written in so developers can be leaned on support for creation and maintenance, but it comes down to your organizations comfort level.  I’ve found PowerShell to be effective tool for setting up quick tests as well which are easily run in any CI/CD pipeline.  For front end tests I would recommend utilizing an open source framework like Selenium or Windows Application Driver.  These have support from the community and give you control of your tests in your own code repository.  Even if you go with a different tool for API or front-end testing, keeping any scripts or project files in source control will give you benefit of version control.  Treating QA as code gives you a single source of truth for effective tests in the same way you have for development code.

      Role of the manual tester

      Not everyone who works in QA is ready to instantly start coding automated tests.  While training in these skills is worthwhile, there is a time investment involved.  There may be value in enlisting the development team or an automation engineer to set up the initial framework.  However, the veteran QA engineer still has a valuable part to play in this process.  They can be Identifying which tests are the most vital, what areas of the system are the most vulnerable, and where the most time would be saved during this manual process.  When they are involved early in a development effort, they can be identifying the test cases required for new projects and creating the script for any automation that will support it, whether or not they write it themselves.

      Most importantly of all is exploratory testing.  Automation is great for performing repetitive tasks.  Where an experienced manual tester shines is in stressing an application in unexpected ways.  These are the people who often know where an application is likely to break, where the holes in other tests might be, and how a user might interact with the application.  That isn’t to say this must be entirely manual either.  While these tests are valuable, any bugs that are found will need steps to reproduce and specifics about what happened.  A tool such as the Test & Feedback extension of Azure DevOps will allow you to record your actions while conducting exploratory testing.  If any issues are found, you can create an exact bug using the information that is recorded.

      Continuous delivery of value is always the goal when we are talking about DevOps.  Value can be defined in many ways, but in the case of a QA team it’s enabling stable and reliable code to be released to production.  Shifting your organization to adopt continuous testing will free up QA’s resources while increasing the reliability of its tests.  Starting this process can be difficult, but there are resources out there to help.  If you need guidance in how testing fits into your DevOps journey feel free to reach out to us here at Nebbia Technology.

      Categories
      Technical Reviews
      Contact New Signature

      Blog Posts

      • Everything you need to know about Azure Virtual WAN
      • Webinar Series: Azure for Retail & Consumer Goods
      • Centralizing Core Services of your Azure Virtual Network Using Hub-and-Spoke Topology
      • New Signature is a GitHub Verified Partner

      Managed Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL MANAGED SERVICES

      Professional Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL PROFESSIONAL SERVICES

      New Signature

      About

      • Company
      • Awards
      • News
      • Leadership
      • Partners
      • Industries

      Solutions

      • Intelligent Enterprise Solutions
      • Intelligent Workplace Solutions
      • Intelligent Cloud Solutions

      Services

      • GO
      • Intelligent Enterprise
      • Intelligent Workplace
      • Intelligent Cloud

      Client Stories

      • Client Stories
      • Testimonials

      Explore

      • Guides & Ebooks
      • Podcasts
      • Flyers
      • Infographics
      • Videos
      Copyright © 2023 New Signature
      • Blog
      • Events
      • Careers
      • Help
      • Anti Slavery
      • Privacy Policy
      • Contact
      • About
        • Company
        • Awards
        • News
        • Leadership
        • Partners
        • Industries
      • Services
        • GO
        • Intelligent Enterprise
        • Intelligent Workplace
        • Intelligent Cloud
      • Client Stories
        • Case Studies
        • Testimonials
      • Technologies
      • Explore
        • Guides & Ebooks
        • Infographics
        • Podcast: Office Explorers
        • Videos
        • Flyers
      • Blog
      • Events
      • Careers
      • Contact
      • Search
      Cookie Settings
      New Signature uses "Required Cookies" to run our website, "Functional Cookies" used by third parties to personalise marketing, including social media features.

      Change your preferences by clicking the “Cookie Settings” link at the bottom of every page. Learn more about cookies in our Cookie Policy and our Privacy Policy. By clicking the “Accept Cookies” button below, you consent to our use of cookies.

      Please note that “Required Cookies” will be set regardless of your consent.
      Cookie SettingsAccept Cookies
      Privacy & Cookies Policy

      Privacy Overview

      This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
      Performance

      Performance Cookies provide Content Delivery Network assets that deliver faster site content delivery capabilities.

      Required

      These cookies are required mainly in order to deliver Multilanguage site capabilities.

      Functional

      Functional Cookies allow us to provided advanced media capabilities including videos, surveys and other multimedia capabilities.

      Disabling Functional cookies will block the playing of videos and other multimedia site components.

      Targeting

      Targeting Cookies are used to capture user information in order for New Signature to deliver better user experiences.

      Save & Accept