Đang chuẩn bị liên kết để tải về tài liệu:
Pro .NET 2.0 Extreme Programming 2006 phần 10
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Trong hộp thoại Add Reference, click vào tab Browse. Điều hướng đến thư mục bin của ứng dụng NUnit, mà nằm ở (nếu bạn cài đặt NUnit trong vị trí mặc định). 6. Chọn các file DLL sau: Sau đó nhấp vào nút Open. 7. Xác minh rằng các file DLL NUnit được liệt kê trong tab Browse, như thể hiện trong hình A-10, và sau đó nhấp vào nút OK. | APPENDIX A PREPARING YOUR DEVELOPMENT ENVIRONMENT 287 endregion namespace TestLayer public class CategoryTests public CategoryTests 4. Right-click the TestLayer and select Add Reference. 5. In the Add Reference dialog box click the Browse tab. Navigate to the NUnit application s bin directory which is located at C Program Files NUnit 2.2.2 bin if you installed NUnit in the default location . 6. Select the following DLLs nunit.core.dll nunit.extensions.dll nunit.framework.dll nunit.uikit.dll nunit.util.dll and nunit-gui-runner.dll. Then click the Open button. 7. Verify that the NUnit DLLs are listed in the Browse tab as shown in Figure A-10 and then click the OK button. Figure A-10. AddingNUnit DLL references 288 APPENDIX A PREPARING YOUR DEVELOPMENT ENVIRONMENT 8. Change the code to look like this region Using directives using System using System.Collections.Generic using System.Text using NUnit.Framework using BusinessLayer endregion namespace TestLayer TestFixture public class CategoryTests Category computerCategory SetUp public void Init computerCategory new Category 1 Category ID Computer Category Name Computer related stuff. Category Description TearDown public void Destroy computerCategory null Test public void GetCategoryName string computerCategoryName computerCategory.CategoryName Assert.IsNotNull computerCategoryName The category name was null gasp Assert.AreEqual Computer computerCategoryName Got the wrong category name gasp 9. Add a C file to the BusinessLayer project called Category.cs. APPENDIX A PREPARING YOUR DEVELOPMENT ENVIRONMENT 289 10. Change the Category.cs file code to look like this region Using directives using System using System.Collections.Generic usinf System.Text endregion namespace BusinessLayer public class Category private int categoryID private string categoryName private string categoryDescription public Category int categoryID string categoryName string categoryDescription this.categoryID categoryID this.categoryName categoryName