Click here to Skip to main content
15,897,334 members
Home / Discussions / C#
   

C#

 
AnswerRe: Print on roll paper using report rdlc and reportviewer Pin
Richard MacCutchan13-Dec-19 9:20
mveRichard MacCutchan13-Dec-19 9:20 
QuestionTracking Data Changes Pin
Kevin Marois13-Dec-19 8:41
professionalKevin Marois13-Dec-19 8:41 
AnswerRe: Tracking Data Changes Pin
Eddy Vluggen13-Dec-19 11:35
professionalEddy Vluggen13-Dec-19 11:35 
GeneralRe: Tracking Data Changes Pin
Kevin Marois13-Dec-19 11:43
professionalKevin Marois13-Dec-19 11:43 
AnswerRe: Tracking Data Changes Pin
Gerry Schmitz13-Dec-19 12:38
mveGerry Schmitz13-Dec-19 12:38 
GeneralRe: Tracking Data Changes Pin
Kevin Marois16-Dec-19 10:51
professionalKevin Marois16-Dec-19 10:51 
GeneralRe: Tracking Data Changes Pin
Gerry Schmitz16-Dec-19 12:06
mveGerry Schmitz16-Dec-19 12:06 
QuestionHow do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 7:56
Melissa Anthonia13-Dec-19 7:56 
I have tried unit testing before, but I have only worked with very simple strings where I inserted some values. I wanted to try something different, so I found this template which is made for practising. It has a class containing an empty linked list.

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace UnitListX
{
    public class ListXwithErrors
    {
        // class with errors

        private Node list;
        private int size;
        public static object Add;
        public static int Size;

        // create a new empty list
        public ListXwithErrors()
        {
            list = null;
            size = 0;
        }

    }
}


I have not gotten very far with the test code.
I would appreciate if anyone could provide me with an example of how to make a unit test of this kind of code.

My test code.
C#
using System;
using System.Collections.Generic;
using System.Xml.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using UnitListX;

namespace UnitTestProject1
{
    [TestClass]
    public class ListTestClass
    {
        [TestMethod]
        public void TestList()
        {
            // arrange
            ListXwithErrors node = new ListXwithErrors();

            
            // act
           
            // assert

        }
    }
}


modified 13-Dec-19 14:40pm.

AnswerRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 9:13
Melissa Anthonia13-Dec-19 9:13 
GeneralRe: How do you make a unit test of an empty linked list? Pin
Gerry Schmitz13-Dec-19 12:49
mveGerry Schmitz13-Dec-19 12:49 
GeneralRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 13:45
Melissa Anthonia13-Dec-19 13:45 
AnswerRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia14-Dec-19 3:14
Melissa Anthonia14-Dec-19 3:14 
Questiondesign a printdocument control with a text and boxes like filling form Pin
bimalachira13-Dec-19 7:06
bimalachira13-Dec-19 7:06 
AnswerRe: design a printdocument control with a text and boxes like filling form Pin
OriginalGriff13-Dec-19 8:03
mveOriginalGriff13-Dec-19 8:03 
Questionc# memory crash Pin
Member 1449096413-Dec-19 5:26
Member 1449096413-Dec-19 5:26 
AnswerRe: c# memory crash Pin
OriginalGriff13-Dec-19 5:42
mveOriginalGriff13-Dec-19 5:42 
GeneralRe: c# memory crash Pin
Member 1449096413-Dec-19 5:57
Member 1449096413-Dec-19 5:57 
AnswerRe: c# memory crash Pin
OriginalGriff13-Dec-19 6:03
mveOriginalGriff13-Dec-19 6:03 
GeneralRe: c# memory crash Pin
Eddy Vluggen13-Dec-19 6:04
professionalEddy Vluggen13-Dec-19 6:04 
GeneralRe: c# memory crash Pin
OriginalGriff13-Dec-19 6:12
mveOriginalGriff13-Dec-19 6:12 
GeneralRe: c# memory crash Pin
Eddy Vluggen13-Dec-19 6:13
professionalEddy Vluggen13-Dec-19 6:13 
GeneralRe: c# memory crash Pin
Eddy Vluggen13-Dec-19 6:13
professionalEddy Vluggen13-Dec-19 6:13 
GeneralRe: c# memory crash Pin
Member 1449096413-Dec-19 6:21
Member 1449096413-Dec-19 6:21 
GeneralRe: c# memory crash Pin
Eddy Vluggen13-Dec-19 6:24
professionalEddy Vluggen13-Dec-19 6:24 
GeneralRe: c# memory crash Pin
Richard Deeming13-Dec-19 6:31
mveRichard Deeming13-Dec-19 6:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.