Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024


Pragmatic Unit Testing in Java 8 with JUnit

简体网页||繁体网页
Jeff Langr 作者
Pragmatic Bookshelf
译者
2015-3-19 出版日期
200 页数
USD 24.86 价格
Paperback
The Pragmatic Starter Kit 丛书系列
9781941222591 图书编码

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 图书标签: JUnit  软件测试  单元测试  Java  test  junit  java  2016年阅读记录   


喜欢 Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 的读者还喜欢




点击这里下载
    

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2024-11-15


Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2024

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 epub 下载 mobi 下载 pdf 下载 txt 下载 2024

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024



Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 用户评价

评分

可以视作很久之前那本《单元测试之道(Java版)》的第二版,总结了许多最新的测试实践经验,其中最为经典的就是总结概括了单元测试的FIRST,Right-BICEP,CORRECT三大测试原则,但是不推荐完全没有单元测试经验和概念的人阅读,因为此书没有解释到底什么是单元测试这个问题。

评分

不错的一本junit入门、提高的书

评分

可以视作很久之前那本《单元测试之道(Java版)》的第二版,总结了许多最新的测试实践经验,其中最为经典的就是总结概括了单元测试的FIRST,Right-BICEP,CORRECT三大测试原则,但是不推荐完全没有单元测试经验和概念的人阅读,因为此书没有解释到底什么是单元测试这个问题。

评分

不错的一本junit入门、提高的书

评分

不错的一本junit入门、提高的书

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 著者简介

Jeff Langr is a veteran software developer with well over three decades experience building software and helping others learn how to do so. Jeff develops software for Outpace Systems, Inc., and still provides help to customers through Langr Software Solutions, Inc. Jeff's prior Pragmatic Bookshelf titles include Agile in a Flash (with Tim Ottinger) and Modern C++ Programming with Test-Driven Development.

Andy Hunt has written and co-written over a half-dozen previous titles, including the classic The Pragmatic Programmer, Practices of an Agile Developer, Pragmatic Thinking & Learning, and Learn to Program with Minecraft Plugins, and regularly speaks at conferences on software development around the world.

Dave Thomas is a programmer who likes to evangelize cool stuff. He cowrote "The Pragmatic Programmer" and was one of the creators of the Agile Manifesto. His book "Programming Ruby" introduced the Ruby language to the world, and "Agile Web Development with Rails" helped kickstart the Rails revolution.


Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 图书目录


Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 pdf 下载 txt下载 epub 下载 mobi 在线电子书下载

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 图书描述

The Pragmatic Programmers classic is back! Freshly updated for modern software development, Pragmatic Unit Testing in Java 8 With JUnit teaches you how to write and run easily maintained unit tests in JUnit with confidence. You'll learn mnemonics to help you know what tests to write, how to remember all the boundary conditions, and what the qualities of a good test are. You'll see how unit tests can pay off by allowing you to keep your system code clean, and you'll learn how to handle the stuff that seems too tough to test.

Pragmatic Unit Testing in Java 8 With JUnit steps you through all the important unit testing topics. If you've never written a unit test, you'll see screen shots from Eclipse, IntelliJ IDEA, and NetBeans that will help you get past the hard part--getting set up and started.

Once past the basics, you'll learn why you want to write unit tests and how to effectively use JUnit. But the meaty part of the book is its collected unit testing wisdom from people who've been there, done that on production systems for at least 15 years: veteran author and developer Jeff Langr, building on the wisdom of Pragmatic Programmers Andy Hunt and Dave Thomas. You'll learn:

How to craft your unit tests to minimize your effort in maintaining them.

How to use unit tests to help keep your system clean.

How to test the tough stuff.

Memorable mnemonics to help you remember what's important when writing unit tests.

How to help your team reap and sustain the benefits of unit testing.

You won't just learn about unit testing in theory--you'll work through numerous code examples. When it comes to programming, hands-on is the only way to learn!

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 下载 mobi epub pdf txt 在线电子书下载

想要找书就要到 图书目录大全
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 读后感

评分

对OOP有一定理解的读者一定会发现,本书没有讲到单元测试的精髓。什么是单元测试的精髓呢?我认为是测试类的内聚性。举个例子:stack类的push和pop方法就是一种高内聚,它们的组合才有stack体现出FILO的性质。单元测试的目标不是孤立地测试push和pop,而是测试FILO性质。 单元...  

评分

对OOP有一定理解的读者一定会发现,本书没有讲到单元测试的精髓。什么是单元测试的精髓呢?我认为是测试类的内聚性。举个例子:stack类的push和pop方法就是一种高内聚,它们的组合才有stack体现出FILO的性质。单元测试的目标不是孤立地测试push和pop,而是测试FILO性质。 单元...  

评分

当一个失败或者错误出现的时候,当前测试方法的执行流程将会被中止,但是(位于同一个测试类中的)其他测试将会继续进行。 断言: assertEquals([String message] , expected , actual); message可选消息。错误发生时报告这个消息。 数组,比较的是引用。 比较浮点数: as...  

评分

一个高质量的程序离不开测试,一个高质量的java程序更不可能会没有JUnit测试,此书讲解如何通过JUnit来进行测试,阐述了单元测试带来的好处。 个人认为,好的团队应该坚持为自己写的代码添加测试程序。提高程序的质量和团队成员的势气、信心。 最后,值得一读:)  

评分

当一个失败或者错误出现的时候,当前测试方法的执行流程将会被中止,但是(位于同一个测试类中的)其他测试将会继续进行。 断言: assertEquals([String message] , expected , actual); message可选消息。错误发生时报告这个消息。 数组,比较的是引用。 比较浮点数: as...  

类似图书 点击查看全场最低价

Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 pdf 下载 txt下载 epub 下载 mobi 下载 2024


分享链接





Pragmatic Unit Testing in Java 8 with JUnit 在线电子书 相关图书




本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2024 book.wenda123.org All Rights Reserved. 图书目录大全 版权所有