{"id":17823,"date":"2022-10-12T14:00:00","date_gmt":"2022-10-12T13:00:00","guid":{"rendered":""},"modified":"2022-10-12T13:45:06","modified_gmt":"2022-10-12T12:45:06","slug":"where-to-begin-when-creating-an-effective-test-plan","status":"publish","type":"post","link":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/","title":{"rendered":"How to create an effective test plan"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"attachment-full size-full webp-format\" src=\"https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader.jpg\" alt=\"An illustration depicting a modern workplace, next to an illustration of Bit the Raccoon.\" width=\"1920\" height=\"700\" data-orig-srcset=\"https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader.jpg 1920w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-300x109.jpg 300w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-1024x373.jpg 1024w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-768x280.jpg 768w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-1536x560.jpg 1536w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-330x120.jpg 330w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-800x292.jpg 800w, https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader-400x146.jpg 400w\" data-orig-src=\"https:\/\/cm-edgetun.pages.dev\/en-us\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceHeader.jpg\"><\/p>\n<p>Software is complex, but <em>writing<\/em> software is even more complex. There are so many factors that come into play when writing software that it is hard to think of all the exceptions that might occur and cause all sorts of havoc. We need UI tests, smoke tests, regression tests, edge case tests, integration tests, and so on.<\/p>\n<p>If the organisation relies on us to run all these tests every time they make a change, we would be spending most of their time testing rather than coding.<\/p>\n<p>We as developers and IT Pros know, or should know, how important it is to test the created work. Testing software requires a different mindset than developing software does. When tests are written by developers who are not trained in writing tests, we don\u2019t always get the results at the quality level we need.<\/p>\n<p>To minimise the risks, it would be helpful if we tested our software in many ways, which means we need to have a lot of tests in place. These could come in the form of Unit Tests, Integration Tests, Automated UI tests and many other methods.<\/p>\n<p>Testing also helps during development. We often find that refactoring a piece of code leads to unwanted side effects. Sometimes when fixing a bug, the developers inadvertently introduce new bugs in other parts of the system. Having a good set of unit tests in place might help by alerting the developer that something is wrong.<\/p>\n<ul>\n<li>Learn more about Test Driven Development (TDD) <a href=\"https:\/\/docs.microsoft.com\/en-us\/visualstudio\/test\/quick-start-test-driven-development-with-test-explorer?view=vs-2019?ocid=AID3051534\">on Microsoft Docs<\/a>.<\/li>\n<\/ul>\n<p>This works only if the testing is done regularly and consistently. Most of us developers know we need to run unit tests to get better software, but that is not enough.<\/p>\n<h2>Test automation helps<\/h2>\n<p>The answer to this dilemma is obvious: automate the tests.<\/p>\n<p>In Visual Studio, you can turn on the option to run all tests continuously or at least after each build. This way a defect will be caught as soon as possible if the right tests were written. When this setting is on, we cannot forget about running them\u2014the tools remembers this for us.<\/p>\n<p>Other types of tests are more problematic. You usually do not want to run a full integration test after each build because these test runs can take hours.<\/p>\n<p>A better solution would be to have them as part of your build pipeline. If you use Azure DevOps, you can take advantage of the Build Pipelines engine, which enables you to script out all tests and run them whenever you see fit.<\/p>\n<p>For instance, you can build a pipeline that runs after each code check-in. These tests usually include unit tests and some regression tests. They run quickly and notify developers when their code is not accepted.<\/p>\n<p>Other tests, such as UI and integration tests, can be set up to run at a fixed interval. It is customary to have these tests run every night, but in these days of global teams it\u2019s hard to identify what night is. So, you have to come up with a time that works for you.<\/p>\n<p>With Azure Pipelines, you can automate all sorts of builds and tests, including Python, Java, and Mobile, among others.<\/p>\n<h2>Where to begin?<\/h2>\n<p>Testing is something that needs to be done from the start. To have the biggest chance of success, testing needs to be part of every step of the software design process. During design, planning, development, and deployment, testing should be on everybody\u2019s mind all the time. Test professionals can help with identifying good test cases, but since a lot of the tests are being automated, developers will be part of the test team as well.<\/p>\n<p>We can break down the process as follows:<\/p>\n<ol>\n<li>Identify which types of test can be run often and which ones should be run periodically.<\/li>\n<li>Write the test plans on a high level<\/li>\n<li>Create unit tests<\/li>\n<li>Create UI Tests<\/li>\n<li>Create integration tests.<\/li>\n<\/ol>\n<p>But remember, it is very important have these tests in place, and to run them often. If you make them automated where possible, and as part of your build pipeline, you can never forget to run them.<\/p>\n<h2>Learn More<\/h2>\n<ul>\n<li>Read up on <a href=\"https:\/\/docs.microsoft.com\/en-us\/visualstudio\/test\/unit-test-your-code?view=vs-2019?ocid=AID3051534\" target=\"_blank\" rel=\"noopener noreferrer\">Unit Testing<\/a> on Microsoft Docs<\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/learn\/modules\/run-quality-tests-build-pipeline?ocid=AID3051534\" target=\"_blank\" rel=\"noopener noreferrer\">Run quality tests in your build pipeline by using Azure Pipelines<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/learn\/modules\/run-functional-tests-azure-pipelines?ocid=AID3051534\" target=\"_blank\" rel=\"noopener noreferrer\">Run functional tests in Azure Pipelines<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/learn\/paths\/deploy-applications-with-azure-devops?ocid=AID3051534\" target=\"_blank\" rel=\"noopener noreferrer\">Deploy applications with Azure DevOps<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/learn\/modules\/develop-test-deploy-azure-functions-with-visual-studio?ocid=AID3051534\" target=\"_blank\" rel=\"noopener noreferrer\">Develop, test, and deploy an Azure Function with Visual Studio<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Software is complex. Writing software is even more complex. But there are ways to make it easier on ourselves.<\/p>\n","protected":false},"author":430,"featured_media":33150,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","footnotes":""},"categories":[594],"post_tag":[292,636,549,519],"content-type":[],"coauthors":[525],"class_list":["post-17823","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technetuk","tag-automation","tag-data","tag-devops","tag-technet-uk"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create an effective test plan - Microsoft Industry Blogs - United Kingdom<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create an effective test plan - Microsoft Industry Blogs - United Kingdom\" \/>\n<meta property=\"og:description\" content=\"Software is complex. Writing software is even more complex. But there are ways to make it easier on ourselves.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Industry Blogs - United Kingdom\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-12T13:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Chris Walden\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Chris Walden\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 min read\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\"},\"author\":[{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/author\/chwald\/\",\"@type\":\"Person\",\"@name\":\"Chris Walden\"}],\"headline\":\"How to create an effective test plan\",\"datePublished\":\"2022-10-12T13:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\"},\"wordCount\":737,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg\",\"keywords\":[\"Automation\",\"Data\",\"DevOps\",\"TechNet UK\"],\"articleSection\":[\"TechNet UK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\",\"name\":\"How to create an effective test plan - Microsoft Industry Blogs - United Kingdom\",\"isPartOf\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg\",\"datePublished\":\"2022-10-12T13:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg\",\"contentUrl\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg\",\"width\":800,\"height\":450,\"caption\":\"An illustration depicting a modern workplace, next to an illustration of Bit the Raccoon.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create an effective test plan\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#website\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/\",\"name\":\"Microsoft Industry Blogs - United Kingdom\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization\",\"name\":\"Microsoft Industry Blogs - United Kingdom\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png\",\"contentUrl\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png\",\"width\":259,\"height\":194,\"caption\":\"Microsoft Industry Blogs - United Kingdom\"},\"image\":{\"@id\":\"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create an effective test plan - Microsoft Industry Blogs - United Kingdom","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/","og_locale":"en_US","og_type":"article","og_title":"How to create an effective test plan - Microsoft Industry Blogs - United Kingdom","og_description":"Software is complex. Writing software is even more complex. But there are ways to make it easier on ourselves.","og_url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/","og_site_name":"Microsoft Industry Blogs - United Kingdom","article_published_time":"2022-10-12T13:00:00+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg","type":"image\/jpeg"}],"author":"Chris Walden","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Chris Walden","Est. reading time":"3 min read"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#article","isPartOf":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/"},"author":[{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/author\/chwald\/","@type":"Person","@name":"Chris Walden"}],"headline":"How to create an effective test plan","datePublished":"2022-10-12T13:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/"},"wordCount":737,"commentCount":0,"publisher":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization"},"image":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage"},"thumbnailUrl":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg","keywords":["Automation","Data","DevOps","TechNet UK"],"articleSection":["TechNet UK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/","url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/","name":"How to create an effective test plan - Microsoft Industry Blogs - United Kingdom","isPartOf":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage"},"image":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage"},"thumbnailUrl":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg","datePublished":"2022-10-12T13:00:00+00:00","breadcrumb":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#primaryimage","url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg","contentUrl":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2020\/05\/ModernWorkplaceThumb.jpg","width":800,"height":450,"caption":"An illustration depicting a modern workplace, next to an illustration of Bit the Raccoon."},{"@type":"BreadcrumbList","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/technetuk\/2022\/10\/12\/where-to-begin-when-creating-an-effective-test-plan\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create an effective test plan"}]},{"@type":"WebSite","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#website","url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/","name":"Microsoft Industry Blogs - United Kingdom","description":"","publisher":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#organization","name":"Microsoft Industry Blogs - United Kingdom","url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png","contentUrl":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-content\/uploads\/sites\/22\/2019\/08\/Microsoft-Logo.png","width":259,"height":194,"caption":"Microsoft Industry Blogs - United Kingdom"},"image":{"@id":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts\/17823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/users\/430"}],"replies":[{"embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/comments?post=17823"}],"version-history":[{"count":0,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/posts\/17823\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/media\/33150"}],"wp:attachment":[{"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/media?parent=17823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/categories?post=17823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/post_tag?post=17823"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/content-type?post=17823"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/cm-edgetun.pages.dev\/en-gb\/industry\/blog\/wp-json\/wp\/v2\/coauthors?post=17823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}