Testing Python. Applying Unit Testing, TDD, BDD and Acceptance Testing

Size: px
Start display at page:

Download "Testing Python. Applying Unit Testing, TDD, BDD and Acceptance Testing"

Transcription

1 Brochure More information from Testing Python. Applying Unit Testing, TDD, BDD and Acceptance Testing Description: Fundamental testing methodologies applied to the popular Python language Testing Python; Applying Unit Testing, TDD, BDD and Acceptance Testing is the most comprehensive book available on testing for one of the top software programming languages in the world. Python is a natural choice for new and experienced developers, and this hands-on resource is a much needed guide to enterprise-level testing development methodologies. The book will show you why Unit Testing and TDD can lead to cleaner, more flexible programs. Unit Testing and Test-Driven Development (TDD) are increasingly must-have skills for software developers, no matter what language they work in. In enterprise settings, it's critical for developers to ensure they always have working code, and that's what makes testing methodologies so attractive. This book will teach you the most widely used testing strategies and will introduce to you to still others, covering performance testing, continuous testing, and more. - Learn Unit Testing and TDD important development methodologies that lie at the heart of Agile development - Enhance your ability to work with Python to develop powerful, flexible applications with clean code - Draw on the expertise of author David Sale, a leading UK developer and tech commentator - Get ahead of the crowd by mastering the underappreciated world of Python testing Knowledge of software testing in Python could set you apart from Python developers using outmoded methodologies. Python is a natural fit for TDD and Testing Python is a must-read text for anyone who wants to develop expertise in Python programming. Contents: Introduction 1 CHAPTER 1 A History of Testing 5 You Do Test, Don t You? 7 Fundamentals and Best Practices 7 Python Installation 8 Linux 8 Mac 8 Windows 8 Pip 9 Virtualenv 9 Source Control (SVN, Git) 10 Interactive Development Environment (IDE) 11 Summary 12 CHAPTER 2 Writing Unit Tests 15 What Is Unit Testing? 15

2 What Should You Test? 17 Writing Your First Unit Test 17 Checking Values with the assertequals Method 18 Checking Exception Handling with assertraises 20 Following the PEP-8 Standard 22 Unit Test Structure 23 Additional Unit Test Examples 24 Getting Clever with assertraises 24 Making Your Life Easier with setup 25 Useful Methods in Unit Testing 27 assertequal(x, y, msg=none) 27 assertalmostequal(x, y, places=none, msg=none, delta=none) 27 assertraises(exception, method, arguments, msg=none) 28 assertdictcontainssubset(expected, actual, msg=none) 28 assertdictequal(d1, d2, msg=none) 28 asserttrue(expr, msg=none) 28 assertfalse(expr, msg=none) 29 assertgreater(a, b, msg=none) 29 assertgreaterequal(a, b, msg=none) 29 assertin(member, container, msg=none) 30 assertis(expr1, expr2) 30 assertisinstance(obj, class, msg=none) 30 assertnotisinstance(obj, class, msg=none) 30 assertisnone(obj, msg=none) 30 assertisnot(expr1, expr2, msg=none) 31 assertisnotnone(obj, msg=none) 31 assertless(a, b, msg=none) 31 assertlessequal(a, b, msg=none) 31 assertitemsequal(a, b, msg=none) 31 assertraises(excclass, callableobj, -args, --kwargs, msg=none) 32 Summary 32 CHAPTER 3 Utilizing Unit Test Tools 33

3 Using Python s Nose 33 Installing Nose 34 Using Nose s Best Features 35 Running Specifi c Test Files 35 Getting More Detail with Verbose 35 Debugging Support with PDB 36 Checking Your Coverage 38 Coloring your tests with Rednose 39 PyTest: An Alternative Test Runner 40 Installing PyTest 40 PyTest s Best Features 41 Running Specifi c Tests 41 Viewing Detail with Verbose and Summary 42 Debugging with PDB 43 Checking Your Coverage with PyTest 45 Choosing Between Nose and PyTest 46 Mock and Patch Tricky Situations 46 Installing the Mock Library 47 Mocking a Class and Method Response 47 When Mock Won t Do, Patch! 50 The Requests Library 50 Patch in Action 50 Advanced Mocking 52 Summary 53 CHAPTER 4 Writing Testable Documentation 55 Writing Your First Doctest 56 Th e Python Shell 56 Adding Doctests to a Method 57 Running Your Doctests 58 Handling Error Cases 59 Advanced Doctest Usage 61

4 Improving Doctests with Nose Integration 62 Summary 65 Resources 65 CHAPTER 5 Driving Your Development with Tests 67 Agile Development 67 Adopting the Agile Process Now 68 Ethos of Test Driven Development 70 Advantages of Test Driven Development 72 Ping-Pong Programming 72 Test Driving Your Problem 73 Writing Your Failing Test 74 Making Your Test Pass 75 Driving More Features with Tests 75 Wrapping Up the Task 77 Summary 82 Resources 83 CHAPTER 6 Writing Acceptance Tests 85 What Is Acceptance Testing? 85 Anatomy of an Acceptance Test 87 Using Gherkin Syntax 87 Th e Magic Is in the Step File 88 Goals of Acceptance Testing 89 Implementing Developer and QA Collaboration 90 Letting Behavior Drive Your Problem 90 Writing Your Failing Acceptance Test 90 Defining Your Steps 92 Implementing Your Code 94 Developing More of the Feature 95 bank_apppy 96 indexhtml 97 Delivering the Finished Article 98 Advanced Acceptance Test Techniques 102

5 Scenario Outline 102 Tables of Data in Scenarios 103 Summary 104 Resources 105 CHAPTER 7 Utilizing Acceptance Test Tools 107 Cucumber: The Acceptance Test Standard 107 Lettuce in Detail 108 Tagging 108 Fail Fast 112 Nosetest Integration 114 Robot: An Alternative Test Framework 115 Installing Robot 116 Writing a Test Case 116 Implementing Keywords 117 Running Robot Tests 119 Summary 123 Resources 123 CHAPTER 8 Maximizing Your Code s Performance 125 Understanding the Importance of Performance Testing 126 JMeter and Python 126 Installation 127 Configuring Your Test Plans 128 Utilizing Your Test Plans Effectively 135 Code Profiling with cprofile 135 Run a cprofile Session 136 Analyzing the cprofile Output 142 Summary 144 Resources 144 CHAPTER 9 Looking After Your Lint 145 Coming to Grips with Pylint 146 Installing Pylint 146

6 Using Pylint 146 Understanding the Pylint Report 149 The Module Block 149 The Messages by Category Section 149 The Messages Section 150 The Code Evaluation Score 150 The Raw Metrics Section 150 The Statistics by Type Section 150 Customizing Pylint s Output 150 Telling Pylint to Ignore Errors 153 Covering All Your Code with Unit Tests 154 Installing Coverage 155 Using Coverage 155 Advanced Coverage Options 157 Producing an HTML/XML Report 157 Setting a Minimum Coverage Threshold 159 Restricting Coverage to a Specific Package 159 Ignoring Coverage 160 Summary 161 Resources 162 CHAPTER 10 Automating Your Processes 163 Build Paver Tasks 164 Installing Paver 164 Creating a Paver Task 164 Executing Paver Tasks 165 Defi ning a Default Build 166 Setting Up Automated Builds 168 Installing Jenkins 169 Adding Coverage and PyLint Reports 175 Generating a PyLint Report 175 Generating a Coverage Report 176 Making Your Build Status Highly Visible 176

7 Summary 181 Resources 181 CHAPTER 11 Deploying Your Application 183 Deploying Your Application to Production 184 Creating a Deployable Artifact 185 Defining the Paver Tasks 185 Incorporating Packaging into the Build 187 Enabling Archiving on Jenkins 188 QA Environment 189 Implementing Stage and Production Environments 190 Implementing a Cloud Deployment 191 Creating a Heroku Account 192 Creating a Small Application 193 Setting up Git for Heroku 193 Deploying the Application to Heroku 194 Smoke Testing a Deployed Application 195 Example Application Stack 196 Smoke Test Scenarios 197 Implementing Smoke Tests 198 Summary 200 Resources 201 CHAPTER 12 The Future of Testing Python 203 Stub the Solution 203 Making Deployment Natural 205 Automating (Nearly) Everything 206 Working in Public 207 Collaborating on Step Definitions 208 Final Thoughts 209 Resources 210 Index 211

8 Ordering: Order Online - Order by Fax - using the form below Order by Post - print the order form below and send to Research and Markets, Guinness Centre, Taylors Lane, Dublin 8, Ireland.

9 Page 1 of 2 Fax Order Form To place an order via fax simply print this form, fill in the information below and fax the completed form to (from USA) or (from Rest of World). If you have any questions please visit Order Information Please verify that the product information is correct. Product Name: Web Address: Office Code: Testing Python. Applying Unit Testing, TDD, BDD and Acceptance Testing SC Product Format Please select the product format and quantity you require: Hard Copy (Paper back): Quantity USD USD 28 Shipping/Handling * Shipping/Handling is only charged once per order. Contact Information Please enter all the information below in BLOCK CAPITALS Title: Mr Mrs Dr Miss Ms Prof First Name: Last Name: Address: * Job Title: Organisation: Address: City: Postal / Zip Code: Country: Phone Number: Fax Number: * Please refrain from using free accounts when ordering (e.g. Yahoo, Hotmail, AOL)

10 Page 2 of 2 Payment Information Please indicate the payment method you would like to use by selecting the appropriate box. Pay by credit card: You will receive an with a link to a secure webpage to enter your credit card details. Pay by check: Please post the check, accompanied by this form, to: Research and Markets, Guinness Center, Taylors Lane, Dublin 8, Ireland. Pay by wire transfer: Please transfer funds to: Account number Sort code Swift code IBAN number Bank Address ULSBIE2D IE78ULSB Ulster Bank, Main Street, Blackrock, Co. Dublin, Ireland. If you have a Marketing Code please enter it below: Marketing Code: Please note that by ordering from Research and Markets you are agreeing to our Terms and Conditions at Please fax this form to: (646) or (646) From USA or From Rest of World

U.S. Call Center Software Markets

U.S. Call Center Software Markets Brochure More information from http://www.researchandmarkets.com/reports/358405/ U.S. Call Center Software Markets Description: All types of call center software are continuing to rapidly gain popularity,

More information

Next Generation Enterprise Mobility Management Market Insight

Next Generation Enterprise Mobility Management Market Insight Brochure More information from http://www.researchandmarkets.com/reports/2858620/ Next Generation Enterprise Mobility Management Market Insight Description: Mobile Device Management (MDM) solutions are

More information

World Enterprise, Broadband, Mobile Video Transcoders Market

World Enterprise, Broadband, Mobile Video Transcoders Market Brochure More information from http://www.researchandmarkets.com/reports/1061156/ World Enterprise, Broadband, Mobile Video Transcoders Market Description: Encoding is defined as the process of turning

More information

Analysis of the Global Enterprise Firewall Market

Analysis of the Global Enterprise Firewall Market Brochure More information from http://www.researchandmarkets.com/reports/2238954/ Analysis of the Global Enterprise Firewall Market Description: Next-generation Technologies Protect Businesses from Advanced

More information

Global Big Data Analytics Market for Test and Measurement

Global Big Data Analytics Market for Test and Measurement Brochure More information from http://www.researchandmarkets.com/reports/3420825/ Global Big Data Analytics Market for Test and Measurement Description: Big Data analytics for test and measurement (T&M)

More information

World Wireless Protocol Analyzers and Network Monitoring Systems

World Wireless Protocol Analyzers and Network Monitoring Systems Brochure More information from http://www.researchandmarkets.com/reports/1443662/ World Wireless Protocol Analyzers and Network Monitoring Systems Description: This research service provides the key research

More information

Strategic Global Sourcing Best Practices

Strategic Global Sourcing Best Practices Brochure More information from http://www.researchandmarkets.com/reports/1819924/ Strategic Global Sourcing Best Practices Description: The latest best practice guidance on all aspects of global strategic

More information

2015 U.S. Technical and Trade Schools Industry - Industry Report

2015 U.S. Technical and Trade Schools Industry - Industry Report Brochure More information from http://www.researchandmarkets.com/reports/3277101/ 2015 U.S. Technical and Trade Schools Industry - Industry Report Description: The 2015 U.S. Technical and Trade Schools

More information

Brochure More information from http://www.researchandmarkets.com/reports/2212908/

Brochure More information from http://www.researchandmarkets.com/reports/2212908/ Brochure More information from http://www.researchandmarkets.com/reports/2212908/ Multimedia-based Instructional Design. Computer-based Training, Webbased Training, Distance Broadcast Training, Performance-based

More information

Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar

Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar Brochure More information from http://www.researchandmarkets.com/reports/3493089/ Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar Description: Because

More information

Global Opioid Dependence Drugs Market Highlights - 2015

Global Opioid Dependence Drugs Market Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3293542/ Global Opioid Dependence Drugs Market Highlights - 2015 Description: The latest research Global Opioid Dependence Drugs

More information

Non-life Insurance IT Solutions Europe 2014-2015

Non-life Insurance IT Solutions Europe 2014-2015 Brochure More information from http://www.researchandmarkets.com/reports/2687950/ Non-life Insurance IT Solutions Europe 2014-2015 Description: Non-life Insurance IT Solutions Europe 2014-2015 - Current

More information

Europe Rheumatoid Arthritis Market Highlights - 2015

Europe Rheumatoid Arthritis Market Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3447138/ Europe Rheumatoid Arthritis Market Highlights - 2015 Description: The latest research, 'Europe Rheumatoid Arthritis Market

More information

Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry

Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry Brochure More information from http://www.researchandmarkets.com/reports/2764190/ Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry Description: The aim

More information

Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015

Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070277/ Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of

More information

Project Manager's Spotlight on Change Management

Project Manager's Spotlight on Change Management Brochure More information from http://www.researchandmarkets.com/reports/2217704/ Project Manager's Spotlight on Change Management Description: Clear-Cut Ways to Manage Inevitable Project Changes If you're

More information

Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015

Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070278/ Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of

More information

Global Haemophilia Epidemiology and Patient Flow Analysis - 2015

Global Haemophilia Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070298/ Global Haemophilia Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of its Haemophilia

More information

Business Intelligence and the Cloud. Strategic Implementation Guide. Wiley and SAS Business Series

Business Intelligence and the Cloud. Strategic Implementation Guide. Wiley and SAS Business Series Brochure More information from http://www.researchandmarkets.com/reports/2638554/ Business Intelligence and the Cloud. Strategic Implementation Guide. Wiley and SAS Business Series Description: How to

More information

Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption of Public Cloud

Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption of Public Cloud Brochure More information from http://www.researchandmarkets.com/reports/2643414/ Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption

More information

Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be Key in Driving Growth

Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be Key in Driving Growth Brochure More information from http://www.researchandmarkets.com/reports/2569033/ Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be

More information

U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility

U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility Brochure More information from http://www.researchandmarkets.com/reports/2258613/ U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility Description: Mobile

More information

Project Scheduling and Management for Construction. 4th Edition. RSMeans

Project Scheduling and Management for Construction. 4th Edition. RSMeans Brochure More information from http://www.researchandmarkets.com/reports/2488468/ Project Scheduling and Management for Construction. 4th Edition. RSMeans Description: First published in 1988 by RS Means,

More information

Lead Generation and Nurturing: Benchmarking Report 2012

Lead Generation and Nurturing: Benchmarking Report 2012 Brochure More information from http://www.researchandmarkets.com/reports/2225223/ Lead Generation and Nurturing: Benchmarking Report 2012 Description: B2B lead generation and nurturing still remains one

More information

Strategic Analysis of Fleet Vehicle Leasing Market in Ireland

Strategic Analysis of Fleet Vehicle Leasing Market in Ireland Brochure More information from http://www.researchandmarkets.com/reports/3629286/ Strategic Analysis of Fleet Vehicle Leasing Market in Ireland Description: The objective of this study is to provide a

More information

ZOHO Company Profile, focussing on CRM Activities

ZOHO Company Profile, focussing on CRM Activities Brochure More information from http://www.researchandmarkets.com/reports/2816079/ ZOHO Company Profile, focussing on CRM Activities Description: Zoho Company Report, Focussing on CRM Activities gives detailed

More information

"Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook"

Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3064340/ Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook Description: "Personal Accident

More information

The Practical Guide to Project Management Documentation

The Practical Guide to Project Management Documentation Brochure More information from http://www.researchandmarkets.com/reports/2217583/ The Practical Guide to Project Management Documentation Description: Project Management The one stop resource for project

More information

Life Insurance Distribution Channels in Croatia to 2019: Market Databook

Life Insurance Distribution Channels in Croatia to 2019: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3500216/ Life Insurance Distribution Channels in Croatia to 2019: Market Databook Description: The "Life Insurance Distribution

More information

Ulcerative colitis Pipeline Highlights - 2015

Ulcerative colitis Pipeline Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3031128/ Ulcerative colitis Pipeline Highlights - 2015 Description: The latest report Ulcerative colitis Pipeline Highlights 2015

More information

2013 U.S. Telephone Answering Service Industry-Industry & Market Report

2013 U.S. Telephone Answering Service Industry-Industry & Market Report Brochure More information from http://www.researchandmarkets.com/reports/2524214/ 2013 U.S. Telephone Answering Service Industry-Industry & Market Report Description: The U.S. Telephone Answering Service

More information

U.S. Database Management System Software by Vertical Market

U.S. Database Management System Software by Vertical Market Brochure More information from http://www.researchandmarkets.com/reports/365475/ U.S. Database Management System Software by Vertical Market Description: Driven by the inherent need for businesses of all

More information

Call Center Strategies 2013

Call Center Strategies 2013 Brochure More information from http://www.researchandmarkets.com/reports/2706990/ Call Center Strategies 2013 Description: The research conducted during 2013 sought to better understand how companies are

More information

Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market

Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market Brochure More information from http://www.researchandmarkets.com/reports/2858629/ Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market Description: With the significant

More information

'Personal Accident and Health Insurance Premiums and Claims in Australia to 2018: Market Brief' contains

'Personal Accident and Health Insurance Premiums and Claims in Australia to 2018: Market Brief' contains Brochure More information from http://www.researchandmarkets.com/reports/3064493/ Personal Accident and Health Insurance Premiums and Claims in Australia to : Market Brief Description: 'Personal Accident

More information

IP VPN Market Forecast in India to 2016

IP VPN Market Forecast in India to 2016 Brochure More information from http://www.researchandmarkets.com/reports/1772777/ IP VPN Market Forecast in India to 2016 Description: This databook analyzes and provides forecasts for the Internet Protocol-enabled

More information

Global Physical Security Information Management Market Assessment

Global Physical Security Information Management Market Assessment Brochure More information from http://www.researchandmarkets.com/reports/2776367/ Global Physical Security Information Management Market Assessment Description: The physical security information management

More information

Personal Accident and Health Insurance Investments in Russia to 2018: Market Databook

Personal Accident and Health Insurance Investments in Russia to 2018: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3035895/ Personal Accident and Health Insurance Investments in Russia to : Market Databook Description: "Personal Accident and Health

More information

Western European Storage Area Network (SAN) Market

Western European Storage Area Network (SAN) Market Brochure More information from http://www.researchandmarkets.com/reports/365481/ Western European Storage Area Network (SAN) Market Description: The Internet, electronic commerce, data warehousing, enterprise

More information

Effective Software Project Management

Effective Software Project Management Brochure More information from http://www.researchandmarkets.com/reports/2246933/ Effective Software Project Management Description: Why another book on software project management? For some time, the

More information

Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook

Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/2500010/ Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook Description: Synopsis Timetric

More information

Cloud Infrastructure as a Service Market Update 2015

Cloud Infrastructure as a Service Market Update 2015 Brochure More information from http://www.researchandmarkets.com/reports/3143043/ Cloud Infrastructure as a Service Market Update 2015 Description: This study analyzes the current IaaS market, and forecasts

More information

'Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief' contains

'Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief' contains Brochure More information from http://www.researchandmarkets.com/reports/3087330/ Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief Description: 'Personal Accident

More information

Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf

Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf Brochure More information from http://www.researchandmarkets.com/reports/2330366/ Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf Description: Learn to extend Excel 2013 with VBA programming

More information

The Fundamentals of Organizational Behavior. What Managers Need to Know

The Fundamentals of Organizational Behavior. What Managers Need to Know Brochure More information from http://www.researchandmarkets.com/reports/2213258/ The Fundamentals of Organizational Behavior. What Managers Need to Know Description: This primer offers MBA and other advanced

More information

Predictive Analytics for Human Resources. Wiley and SAS Business Series

Predictive Analytics for Human Resources. Wiley and SAS Business Series Brochure More information from http://www.researchandmarkets.com/reports/2766283/ Predictive Analytics for Human Resources. Wiley and SAS Business Series Description: Create and run a human resource analytics

More information

Complete B2B Online Marketing

Complete B2B Online Marketing Brochure More information from http://www.researchandmarkets.com/reports/2247289/ Complete B2B Online Marketing Description: Learn to take full advantage of search and social media for B2B marketing Business-to-business

More information

Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook

Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/2654413/ Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook Description: Synopsis

More information

The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition

The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2174575/ The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition Description: Both the 17025:1999

More information

Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief

Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief Brochure More information from http://www.researchandmarkets.com/reports/2697018/ Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief Description: Synopsis 'Non-Life Insurance Premiums

More information

Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief

Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief Brochure More information from http://www.researchandmarkets.com/reports/3022663/ Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief Description: 'Non-Life Insurance Premiums and Claims

More information

A User's Manual to the PMBOK Guide. 2nd Edition

A User's Manual to the PMBOK Guide. 2nd Edition Brochure More information from http://www.researchandmarkets.com/reports/2326796/ A User's Manual to the PMBOK Guide. 2nd Edition Description: The must-have manual to understand and use the latest edition

More information

Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020

Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020 Brochure More information from http://www.researchandmarkets.com/reports/3115162/ Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020 Description: The report provides an in-depth

More information

Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics

Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics Brochure More information from http://www.researchandmarkets.com/reports/2241448/ Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics Description: Written

More information

Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions

Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions Brochure More information from http://www.researchandmarkets.com/reports/2966201/ Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions Description: The study provides comprehensive

More information

Analysis of the Global Vulnerability Management Market

Analysis of the Global Vulnerability Management Market Brochure More information from http://www.researchandmarkets.com/reports/2734454/ Analysis of the Global Vulnerability Management Market Description: This research service provides insight into the vulnerability

More information

European Electronic Medical Records (EMR) Markets

European Electronic Medical Records (EMR) Markets Brochure More information from http://www.researchandmarkets.com/reports/470558/ European Electronic Medical Records (EMR) Markets Description: This Frost & Sullivan research service titled European Electronic

More information

Microsoft Dynamics CRM 2011 Administration Bible

Microsoft Dynamics CRM 2011 Administration Bible Brochure More information from http://www.researchandmarkets.com/reports/1543890/ Microsoft Dynamics CRM 2011 Administration Bible Description: An in-depth, expert guide to Microsoft Dynamics CRM 2011

More information

Essentials of Working Capital Management. Essentials Series

Essentials of Working Capital Management. Essentials Series Brochure More information from http://www.researchandmarkets.com/reports/1596855/ Essentials of Working Capital Management. Essentials Series Description: A comprehensive primer for executives and managers

More information

Global Change and Configuration Management Software Market 2015-2019

Global Change and Configuration Management Software Market 2015-2019 Brochure More information from http://www.researchandmarkets.com/reports/3129431/ Global Change and Configuration Management Software Market 2015-2019 Description: About Change and Configuration Management

More information

General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2824634/ General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description:

More information

Global Project Portfolio Management Market 2015-2019

Global Project Portfolio Management Market 2015-2019 Brochure More information from http://www.researchandmarkets.com/reports/3605204/ Global Project Portfolio Management Market 2015-2019 Description: Market outlook of project portfolio management Market

More information

Project Portfolio Management. A View from the Management Trenches

Project Portfolio Management. A View from the Management Trenches Brochure More information from http://www.researchandmarkets.com/reports/1239636/ Project Portfolio Management. A View from the Management Trenches Description: Written by ten successful project portfolio

More information

Individual Life Insurance in Indonesia to 2019: Market Databook

Individual Life Insurance in Indonesia to 2019: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3508587/ Individual Life Insurance in Indonesia to 2019: Market Databook Description: The "Individual Life Insurance in Indonesia

More information

BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis

BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/1504211/ BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis Description: BP p.l.c. (BP)

More information

Global Big Data Analytics Market

Global Big Data Analytics Market Brochure More information from http://www.researchandmarkets.com/reports/2872293/ Global Big Data Analytics Market Description: This report classifies all analytics solutions into 2 broad segments, namely

More information

Northeast Utilities: Corporate Analysis

Northeast Utilities: Corporate Analysis Brochure More information from http://www.researchandmarkets.com/reports/656767/ Northeast Utilities: Corporate Analysis Description: This company profile is a premium company information product offering

More information

Global and Chinese Polypropylene carbonate (PPC) Industry - 2009-2019

Global and Chinese Polypropylene carbonate (PPC) Industry - 2009-2019 Brochure More information from http://www.researchandmarkets.com/reports/3034018/ Global and Chinese Polypropylene carbonate (PPC) Industry - 2009-2019 Description: Global and Chinese Polypropylene carbonate

More information

2015 U.S. Life Insurance Carriers Industry-Industry & Market Report

2015 U.S. Life Insurance Carriers Industry-Industry & Market Report Brochure More information from http://www.researchandmarkets.com/reports/3070875/ 2015 U.S. Life Insurance Carriers Industry-Industry & Market Report Description: The 2015 U.S. Life Insurance Carriers

More information

Corporate Performance Management Best Practices. A Case Study Approach to Accelerating CPM Results. Wiley Corporate F&A

Corporate Performance Management Best Practices. A Case Study Approach to Accelerating CPM Results. Wiley Corporate F&A Brochure More information from http://www.researchandmarkets.com/reports/2329527/ Corporate Performance Management Best Practices. A Case Study Approach to Accelerating CPM Results. Wiley Corporate F&A

More information

ACO Hardware in the United States

ACO Hardware in the United States Brochure More information from http://www.researchandmarkets.com/reports/2992427/ ACO Hardware in the United States Description: The report consist of a main PDF file of about 450 pages, about 9500 web

More information

Risk and Financial Management in Construction

Risk and Financial Management in Construction Brochure More information from http://www.researchandmarkets.com/reports/687060/ Risk and Financial Management in Construction Description: In today s climate the need for a closer understanding of the

More information

Analysis of the Brazilian Data Center Power Supplies Market

Analysis of the Brazilian Data Center Power Supplies Market Brochure More information from http://www.researchandmarkets.com/reports/2681385/ Analysis of the Brazilian Data Center Power Supplies Market Description: IT Infrastructure Outsourcing Services Compel

More information

General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2823974/ General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description: Company

More information

A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition

A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition Brochure More information from http://www.researchandmarkets.com/reports/2326795/ A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition Description: A compendium of ready made

More information

Vulnerability Management (VM) - Global Market Analysis

Vulnerability Management (VM) - Global Market Analysis Brochure More information from http://www.researchandmarkets.com/reports/3339599/ Vulnerability Management (VM) - Global Market Analysis Description: Vulnerability management (VM) is a perimeter based

More information

North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic Turbulence

North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic Turbulence Brochure More information from http://www.researchandmarkets.com/reports/2498908/ North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic

More information

The Softletter Telesales Compensation and Efficiency Report

The Softletter Telesales Compensation and Efficiency Report Brochure More information from http://www.researchandmarkets.com/reports/2099710/ The Softletter Telesales Compensation and Efficiency Report Description: The Softletter Telesales Compensation and Efficiency

More information

Forensic Accounting and Fraud Investigation for Non-Experts. 3rd Edition

Forensic Accounting and Fraud Investigation for Non-Experts. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2215111/ Forensic Accounting and Fraud Investigation for Non-Experts. 3rd Edition Description: Fully revised, the proven primer

More information

North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum

North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum Brochure More information from http://www.researchandmarkets.com/reports/1545614/ North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum Description: The Report

More information

Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile

Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile Brochure More information from http://www.researchandmarkets.com/reports/2403273/ Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile Description: Synopsis The report provides

More information

Professional Java Tools for Extreme Programming. Ant, XDoclet, JUnit, Cactus, and Maven

Professional Java Tools for Extreme Programming. Ant, XDoclet, JUnit, Cactus, and Maven Brochure More information from http://www.researchandmarkets.com/reports/2246744/ Professional Java Tools for Extreme Programming. Ant, XDoclet, JUnit, Cactus, and Maven Description: What is this book

More information

SharePoint 2010 Business Intelligence 24-Hour Trainer

SharePoint 2010 Business Intelligence 24-Hour Trainer Brochure More information from http://www.researchandmarkets.com/reports/2247216/ SharePoint 2010 Business Intelligence 24-Hour Trainer Description: Learn to build and deliver SharePoint BI applications

More information

Global EFT POS Terminals Market

Global EFT POS Terminals Market Brochure More information from http://www.researchandmarkets.com/reports/2254258/ Description: This research service covers the global market for EFT POS terminals. Detailed market trend analysis including

More information

Professional Alfresco. Practical Solutions for Enterprise Content Management

Professional Alfresco. Practical Solutions for Enterprise Content Management Brochure More information from http://www.researchandmarkets.com/reports/2251636/ Professional Alfresco. Practical Solutions for Enterprise Content Management Description: A timely and authoritative guide,

More information

How To Understand Cell Network Indoor Coverage In China

How To Understand Cell Network Indoor Coverage In China Brochure More information from http://www.researchandmarkets.com/reports/699986/ Cellular Network Indoor Coverage in China: 3G Drives the Market Description: Our research shows that more than 60% of mobile

More information

Enterprise Performance Management Done Right. An Operating System for Your Organization. Wiley CIO

Enterprise Performance Management Done Right. An Operating System for Your Organization. Wiley CIO Brochure More information from http://www.researchandmarkets.com/reports/2329628/ Enterprise Performance Management Done Right. An Operating System for Your Organization. Wiley CIO Description: A workable

More information

Pediatric Trials: Patient Recruitment Best Practices

Pediatric Trials: Patient Recruitment Best Practices Brochure More information from http://www.researchandmarkets.com/reports/3261623/ Pediatric Trials: Patient Recruitment Best Practices Description: Recruiting clinical trial participants is hard. Recruiting

More information

2005 Best Practices in Telephone Customer Service: A Call Center Benchmark Report (Full Report)

2005 Best Practices in Telephone Customer Service: A Call Center Benchmark Report (Full Report) Brochure More information from http://www.researchandmarkets.com/reports/302944/ 2005 Best Practices in Telephone Customer Service: A Call Center Benchmark Report (Full Report) Description: Do you know

More information

North American Premises Wiring System Markets

North American Premises Wiring System Markets Brochure More information from http://www.researchandmarkets.com/reports/358348/ North American Premises Wiring System Markets Description: The North American premises wiring markets are primed for significant

More information

Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis

Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2662464/ Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis Description: Saudi Cable Company

More information

Analysis of the European MPLS/IP VPN Market

Analysis of the European MPLS/IP VPN Market Brochure More information from http://www.researchandmarkets.com/reports/3394140/ Analysis of the European MPLS/IP VPN Market Description: The need for secure, private, multi-site connectivity is expected

More information

United Kingdom Defence and Security Report 2015

United Kingdom Defence and Security Report 2015 Brochure More information from http://www.researchandmarkets.com/reports/3302057/ United Kingdom Defence and Security Report 2015 Description: We expect the UK's defence budget to continue increasing in

More information

Impact of Cybersecurity Innovations in Key Sectors (Technical Insights)

Impact of Cybersecurity Innovations in Key Sectors (Technical Insights) Brochure More information from http://www.researchandmarkets.com/reports/2986815/ Impact of Cybersecurity Innovations in Key Sectors (Technical Insights) Description: The growing number of cyber attacks

More information

Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis

Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2661709/ Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis Description: Genesis

More information

Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2824365/ Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description:

More information

Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis

Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/2661443/ Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Description:

More information

Building and Renovating Schools. Design, Construction Management, Cost Control. RSMeans

Building and Renovating Schools. Design, Construction Management, Cost Control. RSMeans Brochure More information from http://www.researchandmarkets.com/reports/2216034/ Building and Renovating Schools. Design, Construction Management, Cost Control. RSMeans Description: This all-inclusive

More information