Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
tano1221
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
ПΣӨƧӨFƬ
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
Engh3
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
ℛeℙ@¢ᴋ€r
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
大†Shinegumi†大
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
missyou123
Learn Unit Testing with NUnit and C# Vote_lcapLearn Unit Testing with NUnit and C# Voting_barLearn Unit Testing with NUnit and C# Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» Audified MixChecker ULTRA v1.0
Learn Unit Testing with NUnit and C# EmptyHoy a las 3:22 am por missyou123

» Irix HDR Pro / Classic Pro 2.3.29 (x64) Multilingual
Learn Unit Testing with NUnit and C# EmptyAyer a las 10:36 pm por 大†Shinegumi†大

» LightPDF Editor 2.14.7.17 Build 07.01.2024 Multilingual
Learn Unit Testing with NUnit and C# EmptyAyer a las 10:33 pm por 大†Shinegumi†大

» Stellar Repair for Excel 7.0.0.0 (x64)
Learn Unit Testing with NUnit and C# EmptyAyer a las 10:32 pm por 大†Shinegumi†大

» PDF Shaper Premium / Ultimate 14.3 Multilingual
Learn Unit Testing with NUnit and C# EmptyAyer a las 10:30 pm por 大†Shinegumi†大

» EaseUS Partition Master 18.8.0 Build 20240605
Learn Unit Testing with NUnit and C# EmptyAyer a las 9:15 pm por ПΣӨƧӨFƬ

» illustrate TuneFUSION R2024-06-28 Retail
Learn Unit Testing with NUnit and C# EmptyAyer a las 9:12 pm por ПΣӨƧӨFƬ

» Xara Designer Pro+ 24.1.0.69698 (x64)
Learn Unit Testing with NUnit and C# EmptyAyer a las 8:47 pm por ПΣӨƧӨFƬ

» UniFab 2.0.2.6 (x64) Multilingual
Learn Unit Testing with NUnit and C# EmptyAyer a las 8:44 pm por ПΣӨƧӨFƬ

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Learn Unit Testing with NUnit and C#

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
Invitado
Invitado



Learn Unit Testing with NUnit and C# Empty
MensajeTema: Learn Unit Testing with NUnit and C#   Learn Unit Testing with NUnit and C# EmptyLun Mayo 13, 2019 11:53 am

Learn Unit Testing with NUnit and C# 1905132215230118
Learn Unit Testing with NUnit and C#
.MP4 | Video: 1280x720, 30 fps(r) | Audio: AAC, 44100 Hz, 2ch | 2.94 GB
Duration: 7.5 hours | Genre: eLearning Video | Language: English
Learn unit testing, TDD, mocking and Dependency Injection: techniques that you'll need to build reliable software.

What you'll learn

Write Unit Tests
Run and Debug Unit Tests
Write Manual Mocks
Write Mocks with Mocking Framework
Practice Test-Driven Development (TDD)
Apply Best Practices of Writing Unit Tests

Requirements

You should already be familiar with the basics of C#

Description

Learn deeply the concepts and tools that you will need to build maintainable and reliable software.

Teaching Approach

No fluff, no ranting, no beating the air. I esteem your time. The course material is succinct, yet comprehensive. All important concepts are covered. Particularly important topics are covered in-depth. For absolute beginners, I offer my help on Skype absolutely free, if requested.

Take this course, and you will be satisfied.

Build a solid foundation in Unit Testing with this course

This course is all about writing effective unit tests using C# programming language and NUnit as a unit testing framework. Along the way, we will learn the concepts related to unit testing. Today unit testing is an absolutely required skill from any professional developer. Companies expect from developers to know how to write unit tests including all the most important topics such as mocking and test driven development (TDD in short). This course does not cover all the features of NUnit. This course is way more interesting.

Learning unit testing puts a powerful and very useful tool at your fingertips. Being familiar with unit testing you can write reliable and maintainable applications. It is very hard to lead a project which is not covered by unit tests.

Content and Overview

This course is primarily aimed at beginner developers. It provides solid theoretical base reinforced by tons of practical material.

We start with basics of unit testing. What is a unit test? What unit testing frameworks exist? How to run and debug unit tests. After getting acquainted with the basics, we will get to the NUnit framework. Here you'll learn how to install the framework, set the runner. Then you'll learn the basics of assertions and arrange-act-assert triplet. Other key features of NUnit are also covered:

Running tests from the console

Setup and teardown unit tests

Parameterized tests

Grouping and ignoring

Practicing writing of unit tests, it's impossible to avoid applying mocks. I like the word "test double" more, in general. By the way, you'll learn what the difference between the following notion is:

Test double

Fake

Dummy

Stub

Mock

You'll learn how to write test doubles manually. You will also see a simple example of how to use a mocking framework for using mocks. I'll use NSubstitute mocking framework for demonstration.

At the end of this section, you'll get acquainted with two key approaches to unit testing, Classic or Detroit School and London School of unit testing.

You'll separately learn the basic of test-driven development. It is hard to imagine a modern professional developer who doesn't know about TDD, so you'll learn what it is and what it is about. You'll see the Red-Green-Refactor triplet in action.

I could not complete the course avoiding the best practices of writing unit tests. You'll learn the basic concepts of the modern approach to unit testing called "pragmatic unit testing". You'll see what problems static classes and singletons bring regarding the unit testing. They make code harder to unit test. After that, you'll learn the problem of extracting interfaces just for the sake of introducing shims for injecting dependencies.

You'll know should you write unit tests for the trivial code. You'll learn a lot more in the course.

So, in short, the course covers the following topics:

Basic notions of Unit Testing

NUnit and its features

Test Doubles including fakes, dummies, stubs, spies and mocks

How to write manual test doubles and how to use a mocking framework (NSubstitute)

TDD, red-green-refactor triplet

A great number of best practices of writing unit tests

Introduction to Dependency Injection

In the end, we will recap what you have learned, and you will try to understand where you have to go further with the intention to master your skills.

How long is this course: The course is around 7.5 hours. All are video lectures. You will be able to download all the slides and code samples used in the course.

Keywords related to the course:

Visual Studio unit testing tutorial

NUnit unit testing tutorial

Dot Net testing framework

C# unit test framework

Visual Studio unit testing framework tutorial

csharp unit testing tutorial

TDD in C#

NSubstitute

TDD

Test Driven Development

unit testing C#

Who this course is for:

Beginners who want to write better code
Anyone who is interested in Unit Testing

Learn Unit Testing with NUnit and C# 1905132215250116


Download link:
Citación :
uploadgig_com:
https://uploadgig.com/file/download/7616620d42560297/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part1.rar
https://uploadgig.com/file/download/f88E9559ce08e31a/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part2.rar
https://uploadgig.com/file/download/4d836785098702bb/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part3.rar

rapidgator_net:
https://rapidgator.net/file/79c761ed754f68510b05f3cf60d79cfb/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part1.rar.html
https://rapidgator.net/file/a0685a2f44d71e79aa2cd07811825d54/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part2.rar.html
https://rapidgator.net/file/8602f523869da266b514acfa1f5ca1a1/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part3.rar.html

nitroflare_com:
http://nitroflare.com/view/A8C705A8836226F/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part1.rar
http://nitroflare.com/view/BF9C033EE4AC332/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part2.rar
http://nitroflare.com/view/894FAF76A8447BD/ckey1.Learn.Unit.Testing.with.NUnit.and.C.part3.rar

Links are Interchangeable - No Password - Single Extraction
Volver arriba Ir abajo
 

Learn Unit Testing with NUnit and C#

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» C# Unit Testing with NUnit
» Beginners Guide to Unit Testing with NUnit and C#
» Advanced Unit Testing C# Code with NUnit and Moq - Part 1
» Complete Guide to Unit Testing in .NET Core (NUnit & XUnit)
» Introduction to .NET Testing with NUnit 3

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-