zhongziso
搜索
zhongziso
首页
首页
功能
磁力转BT
BT转磁力
关于
使用教程
免责声明
磁力助手
[FreeCourseLab.com] Udemy - Unit Testing for C# Developers
magnet:?xt=urn:btih:f52874e71c7aa8d3e66c031cebeddc56d3addff1&dn=[FreeCourseLab.com] Udemy - Unit Testing for C# Developers
磁力链接详情
文件列表详情
f52874e71c7aa8d3e66c031cebeddc56d3addff1
infohash:
83
文件数量
766.74 MB
文件大小
2019-8-14 23:07
创建日期
2024-11-18 19:40
最后访问
相关分词
FreeCourseLab
com
Udemy
-
Unit
Testing
for
C#
Developers
1. Getting Started/1. What is Automated Testing.mp4 5.62 MB
1. Getting Started/10. Using NUnit in Visual Studio.mp4 9.2 MB
1. Getting Started/11. What is Test-Driven Development.mp4 6.62 MB
1. Getting Started/12. Course Structure.mp4 7.13 MB
1. Getting Started/13. Summary.mp4 1.28 MB
1. Getting Started/2. Benefits of Automated Testing.mp4 10.86 MB
1. Getting Started/3. Types of Tests.mp4 18.88 MB
1. Getting Started/4. Test Pyramid.mp4 5 MB
1. Getting Started/5. The Tooling.mp4 13 MB
1. Getting Started/6. Source Code.mp4 338.79 KB
1. Getting Started/7. Writing Your First Unit Test.mp4 15.52 MB
1. Getting Started/8. Testing All the Execution Tests.mp4 11.64 MB
1. Getting Started/9. Refactoring with Confidence.mp4 4.44 MB
2. Fundamentals of Unit Testing/1. Introduction.mp4 1.4 MB
2. Fundamentals of Unit Testing/10. Ignoring Tests.mp4 2.3 MB
2. Fundamentals of Unit Testing/11. Writing Trustworthy Tests.mp4 14 MB
2. Fundamentals of Unit Testing/12. Developers Who Don't Write Tests.mp4 22.93 MB
2. Fundamentals of Unit Testing/13. Summary.mp4 2.63 MB
2. Fundamentals of Unit Testing/2. Characteristics of Good Unit Tests.mp4 3.96 MB
2. Fundamentals of Unit Testing/3. What to Test and What Not to Test.mp4 8.65 MB
2. Fundamentals of Unit Testing/4. Naming and Organizing Tests.mp4 6.85 MB
2. Fundamentals of Unit Testing/5. Introducing Rider.mp4 3.68 MB
2. Fundamentals of Unit Testing/6. Writing a Simple Unit Test.mp4 5.82 MB
2. Fundamentals of Unit Testing/7. Black-box Testing.mp4 11.46 MB
2. Fundamentals of Unit Testing/8. Set Up and Tear Down.mp4 6.02 MB
2. Fundamentals of Unit Testing/9. Parameterized Tests.mp4 8.57 MB
3. Core Unit Testing Techniques/1. Introduction.mp4 762.99 KB
3. Core Unit Testing Techniques/10. Testing in the Real-world.mp4 15.9 MB
3. Core Unit Testing Techniques/11. Summary.mp4 1.5 MB
3. Core Unit Testing Techniques/2. Testing Strings.mp4 9.78 MB
3. Core Unit Testing Techniques/3. Testing Arrays and Collections.mp4 9.85 MB
3. Core Unit Testing Techniques/4. Testing the Return Type of Methods.mp4 6.09 MB
3. Core Unit Testing Techniques/5. Testing Void Methods.mp4 7.27 MB
3. Core Unit Testing Techniques/6. Testing Methods that Throw Exceptions.mp4 6.91 MB
3. Core Unit Testing Techniques/7. Testing Methods that Raise an Event.mp4 7.37 MB
3. Core Unit Testing Techniques/8. Testing Private Methods.mp4 15.75 MB
3. Core Unit Testing Techniques/9. Code Coverage.mp4 7 MB
4. Exercises/1. 19- Exercise- FizzBuzz.mp4 2.05 MB
4. Exercises/2. 20- Solution- FizzBuzz.mp4 9.36 MB
4. Exercises/3. Exercise- DemeritPointsCalculator.mp4 1.53 MB
4. Exercises/4. Solution- DemeritPointsCalculator.mp4 26.51 MB
4. Exercises/5. Exercise- Stack.mp4 1.38 MB
4. Exercises/6. Solution- Stack.mp4 26.72 MB
5. Breaking External Dependencies/1. Introduction.mp4 6.16 MB
5. Breaking External Dependencies/10. State-based vs. Interaction Testing.mp4 3.63 MB
5. Breaking External Dependencies/11. Testing the Interaction Between Two Objects.mp4 6.89 MB
5. Breaking External Dependencies/12. Fake as Little As Possible.mp4 6.94 MB
5. Breaking External Dependencies/13. An Example of a Mock Abuse.mp4 7.54 MB
5. Breaking External Dependencies/14. Who Should Write Tests.mp4 8.96 MB
5. Breaking External Dependencies/2. Loosely-coupled and Testable Code.mp4 8.46 MB
5. Breaking External Dependencies/3. Refactoring Towards a Loosely-coupled Design.mp4 14.48 MB
5. Breaking External Dependencies/4. Dependency Injection via Method Parameters.mp4 8.37 MB
5. Breaking External Dependencies/5. Dependency Injection via Properties.mp4 4.66 MB
5. Breaking External Dependencies/6. Dependency Injection via Constructor.mp4 10.63 MB
5. Breaking External Dependencies/7. Dependency Injection Frameworks.mp4 5.69 MB
5. Breaking External Dependencies/8. Mocking Frameworks.mp4 3.18 MB
5. Breaking External Dependencies/9. Creating Mock Objects Using Moq.mp4 12.41 MB
6. Exercises/1. Exercise- VideoService.mp4 1.6 MB
6. Exercises/2. Refactoring.mp4 9.86 MB
6. Exercises/3. Testing.mp4 14.86 MB
6. Exercises/4. Exercise- InstallerHelper.mp4 2.21 MB
6. Exercises/5. Refactoring InstallerHelper.mp4 7.48 MB
6. Exercises/6. Testing InstallerHelper.mp4 14.09 MB
6. Exercises/7. Exercise- EmployeeHelper.mp4 4.07 MB
6. Exercises/8. Refactoring EmployeeController.mp4 9.16 MB
6. Exercises/9. Testing EmployeeController.mp4 7.03 MB
7. Project- Testing BookingHelper/1. Introduction.mp4 5.02 MB
7. Project- Testing BookingHelper/2. Test Cases.mp4 8.1 MB
7. Project- Testing BookingHelper/3. Extracting IBooking Repository.mp4 17.32 MB
7. Project- Testing BookingHelper/4. Writing the First Test.mp4 11.57 MB
7. Project- Testing BookingHelper/5. Refactoring.mp4 20.93 MB
7. Project- Testing BookingHelper/6. Writing the Second Test.mp4 4.41 MB
7. Project- Testing BookingHelper/7. Fixing a Bug.mp4 11.53 MB
7. Project- Testing BookingHelper/8. Writing Additional Tests.mp4 14.88 MB
8. Project- HouseKeeperHelper/1. Introduction.mp4 7.43 MB
8. Project- HouseKeeperHelper/10. Testing Exceptions.mp4 10.32 MB
8. Project- HouseKeeperHelper/2. Refactoring For Testability.mp4 18.59 MB
8. Project- HouseKeeperHelper/3. Fixing a Design Issue.mp4 7.24 MB
8. Project- HouseKeeperHelper/5. Writing the First Interaction Test.mp4 20.64 MB
8. Project- HouseKeeperHelper/6. Keeping Tests Clean.mp4 16.36 MB
8. Project- HouseKeeperHelper/7. Testing a Method is Not Called.mp4 15.72 MB
8. Project- HouseKeeperHelper/8. Another Interaction Test.mp4 15.03 MB
8. Project- HouseKeeperHelper/9. Extracting Helper Methods.mp4 19.82 MB
其他位置