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 - Lecture 20: Software quality
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Software construction - Lecture 20: Software quality
Phước An
94
13
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
The goals of this chapter are: Have a working understanding of XT, given a description of a software testing process, discuss its conformance with XT, what are the major arguments for XT? Given a development scenario, discuss whether XT could be applied, develop black-box unit tests from a unit specification. | Software Construction Lecture 20 Software Quality Learning Goals for Today 2 Have a working understanding of XT Given a description of a software testing process, discuss its conformance with XT. What are the major arguments for XT? Against it? Given a development scenario, discuss whether XT could be applied. If it is applicable, what benefits might be expected from its use? Develop black-box unit tests from a unit specification Input validation Boundary-value analysis Extreme Testing (XT) 3 XT is the testing methodology of an XP development process The philosophy is “extreme”. Maximise the main defect-finding activities, stop other testing activities. Main activities: unit testing and acceptance testing. Extreme unit testing (XUT) Do only the main activities in a unit test. Do them at maximum levels, within the time & resource constraints. (What are these main activities?) Extreme acceptance testing (XAT) Do only the main activities in an acceptance test. Do them at maximum levels. | Software Construction Lecture 20 Software Quality Learning Goals for Today 2 Have a working understanding of XT Given a description of a software testing process, discuss its conformance with XT. What are the major arguments for XT? Against it? Given a development scenario, discuss whether XT could be applied. If it is applicable, what benefits might be expected from its use? Develop black-box unit tests from a unit specification Input validation Boundary-value analysis Extreme Testing (XT) 3 XT is the testing methodology of an XP development process The philosophy is “extreme”. Maximise the main defect-finding activities, stop other testing activities. Main activities: unit testing and acceptance testing. Extreme unit testing (XUT) Do only the main activities in a unit test. Do them at maximum levels, within the time & resource constraints. (What are these main activities?) Extreme acceptance testing (XAT) Do only the main activities in an acceptance test. Do them at maximum levels. Extreme Unit Testing 4 XUT has two “simple rules”: All code modules must have unit tests before coding begins All code modules must pass unit tests before being released into production. Nothing new here, except the insistence on writing unit tests before coding. Wow, that’s a disciplined approach! Would you do this willingly, or would you be tempted to “code early, on the sly” (when you think your manager isn’t looking)? Note: if you’re writing executable tests, then I’d say you’re coding. You can write assertions in Java or Junit. You might be programming in a language with goal-directed evaluation (e.g. Icon): specify the outcome (in restricted settings) and let the computer figure it out! In a futuristic/AI development scenario, you could be “programming by example” i.e. goal-directed programming without any sharply-defined restrictions. Benefits of “Test-First Coding” 5 You gain confidence that your code will meet its specification. You express the end result of your code before
TÀI LIỆU LIÊN QUAN
Lecture Software construction - Lecture 21: Software change, evolution and maintenance
Lecture Software construction - Lecture 21: Software change, evolution and maintenance
Lecture Software construction - Lecture 1: Introduction to software construction
Lecture Software construction - Lecture 1: Introduction to software construction
Lecture Software construction - Lecture 16: Software design patterns
Lecture Software construction - Lecture 22: Software change, evolution and maintenance - Part II
Lecture Software construction - Lecture 18: Software testing
Lecture Software construction - Lecture 19: Software testing (part 2)
Lecture Software construction - Lecture 20: Software quality
Lecture Software construction - Lecture 16: Software design patterns
Đã 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.