WangZhijian / refactoring-improving-the-design-of-existing-code

重构 改善既有代码的设计 源代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

refactoring-improving-the-design-of-existing-code



Chapter01

测试代码

package chapter0101;

import org.testng.annotations.Test;

public class CustomerTest {

	@Test
	public void statement() {
		Customer customer = new Customer("John");
		String title = "Titanic";
		int priceCode = 2;
		int _daysRented = 7;
		Movie movie = new Movie(title, priceCode);
		Rental rental = new Rental(movie, _daysRented);
		customer.addRental(rental);
		String result = customer.statement();
		System.out.println(result);
	}
}

测试结果:

[RemoteTestNG] detected TestNG version 6.12.0
Rental Record for John
	Titanic	7.5
Amount owed is 7.5
You earned 1 frequent renter points
PASSED: statement

===============================================
    Default test
    Tests run: 1, Failures: 0, Skips: 0
===============================================


===============================================
Default suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================

About

重构 改善既有代码的设计 源代码


Languages

Language:Java 58.7%Language:HTML 28.8%Language:CSS 7.5%Language:JavaScript 5.0%