Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Software construction - Lab 10: Unit testing with JUnit
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Software construction - Lab 10: Unit testing with JUnit
Ngọc Sơn
71
28
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
In this chapter, the following content will be discussed: Iterative software development, testing with JUnit, Junit (3.x and 4.x), JUnit 3.x for testing programs, framework elements, assert, TestSuite, test of “exceptions”, Junit in eclipse - Setup, from JUnit 3.x to 4.x. | Software Construction Lab 10 Unit Testing with JUnit SWAT 2010 Iterative Software development + system increment Prioritized functionalities Write acceptance tests Execute acceptance tests Write and execute unit tests “Executed after the development” “Written before” SWAT 2010 Testing with JUnit Junit is a unit test environment for Java programs developed by Erich Gamma and Kent Beck. Writing test cases Executing test cases Pass/fail? (expected result = obtained result?) Consists in a framework providing all the tools for testing. framework: set of classes and conventions to use them. It is integrated into eclipse through a graphical plug-in. Junit (3.x and 4.x) Test framework test cases are Java code test case = “sequence of operations +inputs + expected values” Test code testDoubleOf2(){ // doubleOf2(); // } Production code int doubleOf2(){ // } JUnit 3.x for testing programs JUnit tests “substitute the use of main() to check the program behaviour” All . | Software Construction Lab 10 Unit Testing with JUnit SWAT 2010 Iterative Software development + system increment Prioritized functionalities Write acceptance tests Execute acceptance tests Write and execute unit tests “Executed after the development” “Written before” SWAT 2010 Testing with JUnit Junit is a unit test environment for Java programs developed by Erich Gamma and Kent Beck. Writing test cases Executing test cases Pass/fail? (expected result = obtained result?) Consists in a framework providing all the tools for testing. framework: set of classes and conventions to use them. It is integrated into eclipse through a graphical plug-in. Junit (3.x and 4.x) Test framework test cases are Java code test case = “sequence of operations +inputs + expected values” Test code testDoubleOf2(){ // doubleOf2(); // } Production code int doubleOf2(){ // } JUnit 3.x for testing programs JUnit tests “substitute the use of main() to check the program behaviour” All we need to do is: write a sub-class of TestCase add to it one or more test methods run the test using JUnit junit.framework.* Framework elements TestCase Base class for classes that contain tests assert*() Method family to check conditions TestSuite Enables grouping several test cases Testsuite Testcase 2 Testcase 1 Testcase 3 An example import junit.framework.TestCase; public class StackTester extends TestCase { public StackTester(String name) { super(name); } public void testStack() { Stack aStack = new Stack(); if(!aStack.isEmpty()) { System.out.println(“Stack should be empty!”); aStack.push(10); aStack.push(-4); System.out.println(“Last element:“ + aStack.pop()); System.out.println(“First element: “ +aStack.pop()); } } Must begin with “test” class Stack { public boolean isEmpty(){ . } public void push(int i){ . } public int pop(){ . } } Assert*() They are public methods defined in the base class TestCase Their names begin with “assert” and are used in .
TÀI LIỆU LIÊN QUAN
Lecture Software construction - Lab 2: Programming in eclipse
Lecture Software construction - Lab 2: Programming in eclipse
Lecture Software construction - Lab 1: Introduction to Eclipse
Lecture Software construction - Lab 3: Classes and objects in java
Lecture Software construction - Lab 4: Classes and objects in java
Lecture Software construction - Lab 5: Abstraction, inheritance, and polymorphism in java
Lecture Software construction - Lab 6: GUI building with the AWT in Java
Lecture Software construction - Lab 7: Java programming with SWING GUI builder
Lecture Software construction - Lab 8: Java programming with SWING GUI builder
Lecture Software construction - Lab 9: Java programming with SWING GUI Builder - Part III
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.