Unit Testing for SQL Server Database Projects with Visual Studio

Publié le: 06 décembre 2019
sur la chaîne: TechPledge
6,792
50

Learn database testing concepts, database testing basics and how to perform database testing manually with this database testing tutorial with examples in SQL Serve
================The Database Table =================


==============The Sample Stored Proc=================
create proc entrytest
(
@id Int = NULL ,
@Name VARCHAR(50) = NULL ,
@City VARCHAR(50) = NULL
)
as
INSERT INTO emptb1
VALUES
(
@id ,
@name ,
@city
)
go
==============Run Stored Proc=================
exec entrytest
@id =1 ,
@Name ='Peter' ,
@City ='pune'
go
============ The Unit test ( Test Condition = Row Count = 0 and later 1)=====
DECLARE @RC AS INT, @id AS INT, @Name AS VARCHAR (50), @City AS VARCHAR (50);
SELECT @RC = 0,
@id = 3,
@Name = 'peter',
@City = 'pune';
EXECUTE @RC = [dbo].[entrytest] @id, @Name, @City;
SELECT @RC AS RC;

============ The Unit test ( Pre Test Condition = No Condition)=====
delete from dbo.emptb1 where id=3
============ The Unit test ( Post Test Condition =Row Count = 1)=====
select * from dbo.emptb1 where id= 3


Sur cette page du site, vous pouvez voir la vidéo en ligne Unit Testing for SQL Server Database Projects with Visual Studio durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur TechPledge 06 décembre 2019, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 6,792 fois et il a aimé 50 téléspectateurs. Bon visionnage!