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
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
ПΣӨƧӨFƬ
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
ℛeℙ@¢ᴋ€r
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
missyou123
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
大†Shinegumi†大
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
Engh3
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
ronaldinho424
C++ Unit Testing: Google Test And Google  Mock Vote_lcapC++ Unit Testing: Google Test And Google  Mock Voting_barC++ Unit Testing: Google Test And Google  Mock Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» Maplesoft Maple 2024.1.1 (x64) Multilingual
C++ Unit Testing: Google Test And Google  Mock EmptyHoy a las 1:58 pm por tano1221

» ARES Commander 2025.1 Build 25.1.1.2142 (x64)
C++ Unit Testing: Google Test And Google  Mock EmptyHoy a las 1:56 pm por tano1221

» R-Studio 9.4 Build 191332 Technician |Network Multilingual
C++ Unit Testing: Google Test And Google  Mock EmptyHoy a las 1:43 pm por tano1221

» AOMEI Partition Assistant 10.4.1 Multilingual+ WinPE
C++ Unit Testing: Google Test And Google  Mock EmptyHoy a las 1:30 pm por tano1221

» Disk Pulse Pro/ Ultimate / Enterprise 16.2.24 
C++ Unit Testing: Google Test And Google  Mock EmptyHoy a las 1:26 pm por tano1221

» Chaos Vantage 2.5.0 (x64)
C++ Unit Testing: Google Test And Google  Mock EmptyAyer a las 10:34 pm por ℛeℙ@¢ᴋ€r

» R-Wipe & Clean 20.0.24634 (x86/x64)
C++ Unit Testing: Google Test And Google  Mock EmptyAyer a las 10:21 pm por ℛeℙ@¢ᴋ€r

» n-Track Studio Suite 10.1.0.8705 (x64) Multilingual
C++ Unit Testing: Google Test And Google  Mock EmptyAyer a las 10:17 pm por ℛeℙ@¢ᴋ€r

» UniFab 2.0.2.7 (x64) Multilingual
C++ Unit Testing: Google Test And Google  Mock EmptyAyer a las 10:16 pm por ℛeℙ@¢ᴋ€r

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 C++ Unit Testing: Google Test And Google Mock

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
missyou123
Miembro Mayor
Miembro Mayor


Mensajes : 70293
Fecha de inscripción : 20/08/2016

C++ Unit Testing: Google Test And Google  Mock Empty
MensajeTema: C++ Unit Testing: Google Test And Google Mock   C++ Unit Testing: Google Test And Google  Mock EmptyVie Oct 14, 2022 8:28 am


C++ Unit Testing: Google Test And Google  Mock 66a98eab3e7ff4639a0499072d4715a5

C++ Unit Testing: Google Test And Google Mock
Last updated 7/2022
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 1.51 GB | Duration: 3h 27m

Beginning Test Driven Development (TDD) in C++ with Googletest and Googlemock

What you'll learn
Google Test (C++ Unit Testing)
Google Mock
Requirements
Basic C++
No unit testing experience is required
Description
This course is for software developers and students who want to be better programmers by writing more solid, bug-free code using the Google Test framework. Your code will get better and you will have more confidence that your code is correct, because you will catch more bugs using automated tests.How many times did this happen to you? You wrote new code, and after your hard work is done, you find that you broke features that used to work? And you had to waste more hours finding and fixing the bugs... This problem can get solved in most cases by using automated tests, especially unit tests.No experience with automated testing is required. Very basic C++ knowledge is needed, nothing too sophisticated. If you are completely new to Google Test, this course is just for you! If you already have some knowledge, look at the course content and see if you find some more advanced features that you didn't know about.Google Test works on multiple platforms. You can use any platform you like. In this course, I am doing it on:Windows (Visual Studio)Linux (CMake or compiling directly from the command line)Other platforms will be added if you suggest them to meThere are slides and hands-on coding examples in each section. I recommend that you try the examples and play around with them.Here's a brief presentation of the course content:Optional videos: Setting up on Windows (Visual Studio) and on Linux (CMake and GCC)Basics of unit testing:Unit test structureAssertions - numeric, string, exceptionsReusing code between tests (test fixtures, SetUp() and TearDown())Parameterized tests: generate multiple tests by writing one single function.Mocking - replacing real objects with fakes that you can control):BasicsSetting the behaviour of mocksMatchers
Overview
Section 1: Course Intro
Lecture 1 How to Use This Course
Section 2: Setting Up Google Test
Lecture 2 Intro
Lecture 3 Update for CMake users on all operating systems
Lecture 4 Installing Visual Studio
Lecture 5 Visual Studio - Sample GTest Project
Lecture 6 Small Update
Lecture 7 Googletest with FetchContent in CMake
Lecture 8 About the Next Lecture
Lecture 9 Googletest with FetchContent in CMake Visual Studio
Lecture 10 Installing on Linux
Lecture 11 Google Test CMake Sample (Linux)
Lecture 12 Google Test - CMake With a Test Runner and Actual Application
Section 3: Unit Testing Basics
Lecture 13 Intro
Lecture 14 What is a Unit Test?
Lecture 15 Unit Test Characteristics
Lecture 16 Types of Testing
Lecture 17 Unit Test Structure (Slides)
Lecture 18 Unit Test Structure (Code Example)
Lecture 19 Assertions
Lecture 20 Assertions (Code Example)
Lecture 21 Assertions on Strings - Wrong Way To Do It
Lecture 22 Assertions on Strings
Lecture 23 Assertions on Strings (Code Example)
Lecture 24 Assertions on Exceptions
Lecture 25 Assertions on Exceptions (Code Example)
Lecture 26 Summary
Section 4: Fixtures: Remove Redundant Code
Lecture 27 Intro
Lecture 28 Introduction to Test Fixtures
Lecture 29 Test Fixtures (Code Example)
Lecture 30 Fixture Flow
Lecture 31 Parameterized Tests
Lecture 32 GoogleTest update
Lecture 33 Parameterized Tests (Code Example)
Lecture 34 Summary
Section 5: Setting Up Google Mock
Lecture 35 Intro
Lecture 36 Google Mock Visual Studio (Windows)
Lecture 37 Google Mock CMake Sample (Linux)
Section 6: Google Mock
Lecture 38 Intro
Lecture 39 Mocking Project Resources
Lecture 40 Introduction to Mocking
Lecture 41 Mocking Methods
Lecture 42 Presentation of Our Project
Lecture 43 Mocking Methods - Current Way (Code Example)
Lecture 44 Mocking Methods - Legacy (Code Example)
Lecture 45 Setting Expectations and Behaviour
Lecture 46 Mocking - Times (Code Example)
Lecture 47 Mocking - Returns (Code Example)
Lecture 48 Invoking Actions (Code Example)
Lecture 49 Matchers
Lecture 50 Matchers (Code Example)
Lecture 51 Assertions on Vectors (Code Example)
Lecture 52 Callbacks
Lecture 53 Mocking Private and Static Methods
Lecture 54 Summary
Section 7: Bonus: Tips & Tricks
Lecture 55 What's this?
Lecture 56 Running a subset of tests, FAIL() and SUCCEED()
Lecture 57 Visual Studio Test Runner
Lecture 58 Arguments in Visual Studio (generating XML report)
Section 8: Conclusion
Lecture 59 Conclusion
Software developers and students who want to make their code more robust, bug-free,Anyone interested in Google Test and Google Mock

C++ Unit Testing: Google Test And Google  Mock 780862ccdc8d2d2e10c720800fbaa438

Download link

rapidgator.net:
Código:

https://rapidgator.net/file/2db38a9555ffe657b39e04f57b2148cb/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part1.rar.html
https://rapidgator.net/file/05d457382acc63a959a54a4f88a2ccf8/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part2.rar.html

uploadgig.com:
Código:

https://uploadgig.com/file/download/D869A3562d09bEbe/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part1.rar
https://uploadgig.com/file/download/d3d087951a05b6e7/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part2.rar

nitroflare.com:
Código:

https://nitroflare.com/view/8E6926F870318EB/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part1.rar
https://nitroflare.com/view/653ED9523D56575/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part2.rar

1dl.net:
Código:

https://1dl.net/qm7ek0yq6lva/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part1.rar.html
https://1dl.net/hooke9yit2pu/unlir.C.Unit.Testing.Google.Test.And.Google.Mock.part2.rar.html
Volver arriba Ir abajo
 

C++ Unit Testing: Google Test And Google Mock

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

 Temas similares

-
» Unit Testing and Test Driven Development in Python
» Unit Test Swift Desde Cero - Aprende Test Unitarios en iOS
» Software testing test techniques for writing test cases
» Scrum Master Certification + 2 Mock Test (98% Passing Rate)
» Unit Testing with PH...

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