Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. I'm fairly old fashioned at times ... but should I embrace unit testing?

I'm fairly old fashioned at times ... but should I embrace unit testing?

Scheduled Pinned Locked Moved The Lounge
testingbeta-testingtutorialquestion
54 Posts 38 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • OriginalGriffO OriginalGriff

    At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

        public static string Run()
            {
            try
                {
                testsRun = 0;
                testsPassed = 0;
                testsFailed = 0;
                outText.Clear();
                Range ra = new Range(0, 4);       // 
                Range rb = new Range(5, 9);       // Contiguous with ra
                Range rc = new Range(10, 14);     // Contiguous with rb
                Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                Range rf = new Range(16, 19);     // Not contiguous with anything.
                Range rg = new Range(0, 0);       // Single element.
                Range rh = new Range(1, 1);       // Single element.
                Range ri = new Range(2, 2);       // Single element.
                Range rj = new Range(0, 19);      // All elements.
                Range rk = new Range(0, 4);       // Identical to ra
    
                CheckInt(ra.Count, 5);
                CheckInt(ra.Min, 0);
                CheckInt(ra.Max, 4);
                CheckString(ra, "(0:4)");
                CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
    
                Check(Range.GetEmpty(), new int\[0\]);
    
                Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                CheckInt(ra.UnionWith(rc).Count, 10);
                CheckInt(ra.UnionWith(rc).Min, 0);
                CheckInt(ra.UnionWith
    
    M Offline
    M Offline
    Mircea Neacsu
    wrote on last edited by
    #4

    Not only I do it but I ended up writing my own unit test framework (and published it on CodeProject[^]) It is so easy to create new tests that most bugs I find end up as test cases and serve as regression tests.

    Mircea

    M 1 Reply Last reply
    0
    • OriginalGriffO OriginalGriff

      At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

          public static string Run()
              {
              try
                  {
                  testsRun = 0;
                  testsPassed = 0;
                  testsFailed = 0;
                  outText.Clear();
                  Range ra = new Range(0, 4);       // 
                  Range rb = new Range(5, 9);       // Contiguous with ra
                  Range rc = new Range(10, 14);     // Contiguous with rb
                  Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                  Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                  Range rf = new Range(16, 19);     // Not contiguous with anything.
                  Range rg = new Range(0, 0);       // Single element.
                  Range rh = new Range(1, 1);       // Single element.
                  Range ri = new Range(2, 2);       // Single element.
                  Range rj = new Range(0, 19);      // All elements.
                  Range rk = new Range(0, 4);       // Identical to ra
      
                  CheckInt(ra.Count, 5);
                  CheckInt(ra.Min, 0);
                  CheckInt(ra.Max, 4);
                  CheckString(ra, "(0:4)");
                  CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
      
                  Check(Range.GetEmpty(), new int\[0\]);
      
                  Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                  Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                  Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                  Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                  Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                  Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                  Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                  Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                  Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                  Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                  CheckInt(ra.UnionWith(rc).Count, 10);
                  CheckInt(ra.UnionWith(rc).Min, 0);
                  CheckInt(ra.UnionWith
      
      D Offline
      D Offline
      Duncan Edwards Jones
      wrote on last edited by
      #5

      I use MSUnit but am quite strict about using it to test units, not larger lumps of functionality so broadly speaking there is not much of a maintenance cost to keep the tests working...then it is automated as part of the CI/CD pipeline on Azure DevOps.

      1 Reply Last reply
      0
      • OriginalGriffO OriginalGriff

        At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

            public static string Run()
                {
                try
                    {
                    testsRun = 0;
                    testsPassed = 0;
                    testsFailed = 0;
                    outText.Clear();
                    Range ra = new Range(0, 4);       // 
                    Range rb = new Range(5, 9);       // Contiguous with ra
                    Range rc = new Range(10, 14);     // Contiguous with rb
                    Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                    Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                    Range rf = new Range(16, 19);     // Not contiguous with anything.
                    Range rg = new Range(0, 0);       // Single element.
                    Range rh = new Range(1, 1);       // Single element.
                    Range ri = new Range(2, 2);       // Single element.
                    Range rj = new Range(0, 19);      // All elements.
                    Range rk = new Range(0, 4);       // Identical to ra
        
                    CheckInt(ra.Count, 5);
                    CheckInt(ra.Min, 0);
                    CheckInt(ra.Max, 4);
                    CheckString(ra, "(0:4)");
                    CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
        
                    Check(Range.GetEmpty(), new int\[0\]);
        
                    Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                    Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                    Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                    Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                    Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                    Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                    Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                    Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                    Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                    Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                    CheckInt(ra.UnionWith(rc).Count, 10);
                    CheckInt(ra.UnionWith(rc).Min, 0);
                    CheckInt(ra.UnionWith
        
        pkfoxP Offline
        pkfoxP Offline
        pkfox
        wrote on last edited by
        #6

        + 1 for philistine methodology :-D

        "Life should not be a journey to the grave with the intention of arriving safely in a pretty and well-preserved body, but rather to skid in broadside in a cloud of smoke, thoroughly used up, totally worn out, and loudly proclaiming “Wow! What a Ride!" - Hunter S Thompson - RIP

        1 Reply Last reply
        0
        • OriginalGriffO OriginalGriff

          At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

              public static string Run()
                  {
                  try
                      {
                      testsRun = 0;
                      testsPassed = 0;
                      testsFailed = 0;
                      outText.Clear();
                      Range ra = new Range(0, 4);       // 
                      Range rb = new Range(5, 9);       // Contiguous with ra
                      Range rc = new Range(10, 14);     // Contiguous with rb
                      Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                      Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                      Range rf = new Range(16, 19);     // Not contiguous with anything.
                      Range rg = new Range(0, 0);       // Single element.
                      Range rh = new Range(1, 1);       // Single element.
                      Range ri = new Range(2, 2);       // Single element.
                      Range rj = new Range(0, 19);      // All elements.
                      Range rk = new Range(0, 4);       // Identical to ra
          
                      CheckInt(ra.Count, 5);
                      CheckInt(ra.Min, 0);
                      CheckInt(ra.Max, 4);
                      CheckString(ra, "(0:4)");
                      CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
          
                      Check(Range.GetEmpty(), new int\[0\]);
          
                      Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                      Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                      Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                      Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                      Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                      Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                      Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                      Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                      Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                      Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                      CheckInt(ra.UnionWith(rc).Count, 10);
                      CheckInt(ra.UnionWith(rc).Min, 0);
                      CheckInt(ra.UnionWith
          
          K Offline
          K Offline
          kmoorevs
          wrote on last edited by
          #7

          Make that 2 for philistine method! Actually, my users pay good money to do the testing. :laugh:

          "Go forth into the source" - Neal Morse "Hope is contagious"

          1 Reply Last reply
          0
          • OriginalGriffO OriginalGriff

            At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                public static string Run()
                    {
                    try
                        {
                        testsRun = 0;
                        testsPassed = 0;
                        testsFailed = 0;
                        outText.Clear();
                        Range ra = new Range(0, 4);       // 
                        Range rb = new Range(5, 9);       // Contiguous with ra
                        Range rc = new Range(10, 14);     // Contiguous with rb
                        Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                        Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                        Range rf = new Range(16, 19);     // Not contiguous with anything.
                        Range rg = new Range(0, 0);       // Single element.
                        Range rh = new Range(1, 1);       // Single element.
                        Range ri = new Range(2, 2);       // Single element.
                        Range rj = new Range(0, 19);      // All elements.
                        Range rk = new Range(0, 4);       // Identical to ra
            
                        CheckInt(ra.Count, 5);
                        CheckInt(ra.Min, 0);
                        CheckInt(ra.Max, 4);
                        CheckString(ra, "(0:4)");
                        CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
            
                        Check(Range.GetEmpty(), new int\[0\]);
            
                        Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                        Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                        Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                        Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                        Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                        Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                        Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                        Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                        Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                        Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                        CheckInt(ra.UnionWith(rc).Count, 10);
                        CheckInt(ra.UnionWith(rc).Min, 0);
                        CheckInt(ra.UnionWith
            
            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #8

            It's the debate between "is it good enough to ship?" and "we have 500 unit tests but haven't shipped anything in 2 years". (True story).

            "Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I

            1 Reply Last reply
            0
            • OriginalGriffO OriginalGriff

              At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                  public static string Run()
                      {
                      try
                          {
                          testsRun = 0;
                          testsPassed = 0;
                          testsFailed = 0;
                          outText.Clear();
                          Range ra = new Range(0, 4);       // 
                          Range rb = new Range(5, 9);       // Contiguous with ra
                          Range rc = new Range(10, 14);     // Contiguous with rb
                          Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                          Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                          Range rf = new Range(16, 19);     // Not contiguous with anything.
                          Range rg = new Range(0, 0);       // Single element.
                          Range rh = new Range(1, 1);       // Single element.
                          Range ri = new Range(2, 2);       // Single element.
                          Range rj = new Range(0, 19);      // All elements.
                          Range rk = new Range(0, 4);       // Identical to ra
              
                          CheckInt(ra.Count, 5);
                          CheckInt(ra.Min, 0);
                          CheckInt(ra.Max, 4);
                          CheckString(ra, "(0:4)");
                          CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
              
                          Check(Range.GetEmpty(), new int\[0\]);
              
                          Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                          Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                          Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                          Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                          Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                          Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                          Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                          Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                          Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                          Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                          CheckInt(ra.UnionWith(rc).Count, 10);
                          CheckInt(ra.UnionWith(rc).Min, 0);
                          CheckInt(ra.UnionWith
              
              Greg UtasG Offline
              Greg UtasG Offline
              Greg Utas
              wrote on last edited by
              #9

              Unit tests are often a waste of time. See the articles linked here[^]. Coplien is one of the few "gurus" for whom I have much use. Unit tests are orthogonal to whether tests are automated. Automation, and system and regression tests, are essential to anything beyond toy projects.

              Robust Services Core | Software Techniques for Lemmings | Articles
              The fox knows many things, but the hedgehog knows one big thing.

              <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
              <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

              1 Reply Last reply
              0
              • OriginalGriffO OriginalGriff

                At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                    public static string Run()
                        {
                        try
                            {
                            testsRun = 0;
                            testsPassed = 0;
                            testsFailed = 0;
                            outText.Clear();
                            Range ra = new Range(0, 4);       // 
                            Range rb = new Range(5, 9);       // Contiguous with ra
                            Range rc = new Range(10, 14);     // Contiguous with rb
                            Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                            Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                            Range rf = new Range(16, 19);     // Not contiguous with anything.
                            Range rg = new Range(0, 0);       // Single element.
                            Range rh = new Range(1, 1);       // Single element.
                            Range ri = new Range(2, 2);       // Single element.
                            Range rj = new Range(0, 19);      // All elements.
                            Range rk = new Range(0, 4);       // Identical to ra
                
                            CheckInt(ra.Count, 5);
                            CheckInt(ra.Min, 0);
                            CheckInt(ra.Max, 4);
                            CheckString(ra, "(0:4)");
                            CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                
                            Check(Range.GetEmpty(), new int\[0\]);
                
                            Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                            Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                            Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                            Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                            Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                            Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                            Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                            Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                            Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                            Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                            CheckInt(ra.UnionWith(rc).Count, 10);
                            CheckInt(ra.UnionWith(rc).Min, 0);
                            CheckInt(ra.UnionWith
                
                T Offline
                T Offline
                theoldfool
                wrote on last edited by
                #10

                Best unit test I have ever found= user (see idiot) :laugh:

                >64 Some days the dragon wins. Suck it up.

                1 Reply Last reply
                0
                • R RickZeeland

                  We did some unit testing with Nunit in the past, but it proved too time-consuming to keep up with the rapid pace of changes of our software. So I think the idea is good, but not for our situation (small team, rapid changes) I also shiver when I read articles about "Test Driven Development" :-\ Oh, and of course the obligatory: Slant: best-unit-testing-frameworks-for-net[^]

                  M Offline
                  M Offline
                  Marc Clifton
                  wrote on last edited by
                  #11

                  RickZeeland wrote:

                  but not for our situation (small team, rapid changes)

                  That's supposed to be the point of unit testing. :laugh:

                  Latest Articles:
                  ASP.NET Core Web API: Plugin Controllers and Services

                  1 Reply Last reply
                  0
                  • M Mircea Neacsu

                    Not only I do it but I ended up writing my own unit test framework (and published it on CodeProject[^]) It is so easy to create new tests that most bugs I find end up as test cases and serve as regression tests.

                    Mircea

                    M Offline
                    M Offline
                    Marc Clifton
                    wrote on last edited by
                    #12

                    How did that article not get any votes? Well, it got mine now (a 5).

                    Latest Articles:
                    ASP.NET Core Web API: Plugin Controllers and Services

                    M 1 Reply Last reply
                    0
                    • OriginalGriffO OriginalGriff

                      At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                          public static string Run()
                              {
                              try
                                  {
                                  testsRun = 0;
                                  testsPassed = 0;
                                  testsFailed = 0;
                                  outText.Clear();
                                  Range ra = new Range(0, 4);       // 
                                  Range rb = new Range(5, 9);       // Contiguous with ra
                                  Range rc = new Range(10, 14);     // Contiguous with rb
                                  Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                  Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                  Range rf = new Range(16, 19);     // Not contiguous with anything.
                                  Range rg = new Range(0, 0);       // Single element.
                                  Range rh = new Range(1, 1);       // Single element.
                                  Range ri = new Range(2, 2);       // Single element.
                                  Range rj = new Range(0, 19);      // All elements.
                                  Range rk = new Range(0, 4);       // Identical to ra
                      
                                  CheckInt(ra.Count, 5);
                                  CheckInt(ra.Min, 0);
                                  CheckInt(ra.Max, 4);
                                  CheckString(ra, "(0:4)");
                                  CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                      
                                  Check(Range.GetEmpty(), new int\[0\]);
                      
                                  Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                  Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                  Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                  Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                  Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                  Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                  Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                  Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                  Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                  Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                  CheckInt(ra.UnionWith(rc).Count, 10);
                                  CheckInt(ra.UnionWith(rc).Min, 0);
                                  CheckInt(ra.UnionWith
                      
                      M Offline
                      M Offline
                      Marc Clifton
                      wrote on last edited by
                      #13

                      For algorithmic things like what you posted, unit tests are great, and I would definitely write that with a unit test "engine." That said, I also end up spending time debugging the tests, not the algorithms. :laugh:

                      Latest Articles:
                      ASP.NET Core Web API: Plugin Controllers and Services

                      1 Reply Last reply
                      0
                      • M Marc Clifton

                        How did that article not get any votes? Well, it got mine now (a 5).

                        Latest Articles:
                        ASP.NET Core Web API: Plugin Controllers and Services

                        M Offline
                        M Offline
                        Mircea Neacsu
                        wrote on last edited by
                        #14

                        Thank you Marc :) It was one of my first CodeProject articles and probably not very good.

                        Mircea

                        1 Reply Last reply
                        0
                        • OriginalGriffO OriginalGriff

                          At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                              public static string Run()
                                  {
                                  try
                                      {
                                      testsRun = 0;
                                      testsPassed = 0;
                                      testsFailed = 0;
                                      outText.Clear();
                                      Range ra = new Range(0, 4);       // 
                                      Range rb = new Range(5, 9);       // Contiguous with ra
                                      Range rc = new Range(10, 14);     // Contiguous with rb
                                      Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                      Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                      Range rf = new Range(16, 19);     // Not contiguous with anything.
                                      Range rg = new Range(0, 0);       // Single element.
                                      Range rh = new Range(1, 1);       // Single element.
                                      Range ri = new Range(2, 2);       // Single element.
                                      Range rj = new Range(0, 19);      // All elements.
                                      Range rk = new Range(0, 4);       // Identical to ra
                          
                                      CheckInt(ra.Count, 5);
                                      CheckInt(ra.Min, 0);
                                      CheckInt(ra.Max, 4);
                                      CheckString(ra, "(0:4)");
                                      CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                          
                                      Check(Range.GetEmpty(), new int\[0\]);
                          
                                      Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                      Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                      Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                      Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                      Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                      Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                      Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                      Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                      Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                      Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                      CheckInt(ra.UnionWith(rc).Count, 10);
                                      CheckInt(ra.UnionWith(rc).Min, 0);
                                      CheckInt(ra.UnionWith
                          
                          0 Offline
                          0 Offline
                          0x01AA
                          wrote on last edited by
                          #15

                          Writing unit tests means you have no customers ;P

                          1 Reply Last reply
                          0
                          • OriginalGriffO OriginalGriff

                            At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                public static string Run()
                                    {
                                    try
                                        {
                                        testsRun = 0;
                                        testsPassed = 0;
                                        testsFailed = 0;
                                        outText.Clear();
                                        Range ra = new Range(0, 4);       // 
                                        Range rb = new Range(5, 9);       // Contiguous with ra
                                        Range rc = new Range(10, 14);     // Contiguous with rb
                                        Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                        Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                        Range rf = new Range(16, 19);     // Not contiguous with anything.
                                        Range rg = new Range(0, 0);       // Single element.
                                        Range rh = new Range(1, 1);       // Single element.
                                        Range ri = new Range(2, 2);       // Single element.
                                        Range rj = new Range(0, 19);      // All elements.
                                        Range rk = new Range(0, 4);       // Identical to ra
                            
                                        CheckInt(ra.Count, 5);
                                        CheckInt(ra.Min, 0);
                                        CheckInt(ra.Max, 4);
                                        CheckString(ra, "(0:4)");
                                        CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                            
                                        Check(Range.GetEmpty(), new int\[0\]);
                            
                                        Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                        Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                        Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                        Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                        Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                        Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                        Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                        Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                        Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                        Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                        CheckInt(ra.UnionWith(rc).Count, 10);
                                        CheckInt(ra.UnionWith(rc).Min, 0);
                                        CheckInt(ra.UnionWith
                            
                            T Offline
                            T Offline
                            trønderen
                            wrote on last edited by
                            #16

                            My experience is that most test frameworks rapidly grows into such a complexity that you spend far more time on all the required red tape than on developing good tests. It may pay for huge systems that will be in development for many years, by scores of developers, but for smaller systems, you can do 99% of the same amount of testing with a much simpler infrastructure, with far less test management. Certainly: Do systematic testing! And have a setup that allows you to play old tests again - a.k.a. regression testing. Just don't let the testing infrastructure completely take over. The important tasks in testing is not managing the tests, but rather to identify relevant test cases. All corner cases - and sometimes the cartesian product of all possible cases (when the product is within reasonable limits). How to provoke synchronizing and timing issues. Identify relevant stress testing. And so on. I have seen cases where far more time was spent on test management than on developing relevant tests. Regression testing is essential (and I am surprised by how often I see new software releases witn regression from earlier releases!), but sometimes I wonder if it is getting out of hand: Some years ago, I worked in a development environment having collected regression tests for many years. Before a release, we started the test suite before going home on Friday evening, hoping that it would complete before Monday morning ten days later. So for bugs/fails reported by that week (++) run, there was a ten day turnaround. We invested in the very fastest Sun machine available on the market, cutting the time to complete the tests started on Friday afternoon to complete some time on the (first) following Monday, a week earlier than with the old setup. Yet I was asking myself if we should possibly consider reducing the amount of regression testing, or trying to make the structure more efficient. Fact is that continuous unit, module and system tests regularly applied during development were so complete that the week long (later: weekend long) regression test run practically never revealed any problems. In later jobs, I have seen tests requiring magnitudes more power than they should have, due to lack of proper unit and module tests. Or rather: Management of such. The developers do not trust that units have been properly tested, so in every module where the unit is used, the unit tests are run again, 'in this context'. Then for every (sub)system referencing a module, all the module tests are repeated, repeat

                            1 Reply Last reply
                            0
                            • OriginalGriffO OriginalGriff

                              At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                  public static string Run()
                                      {
                                      try
                                          {
                                          testsRun = 0;
                                          testsPassed = 0;
                                          testsFailed = 0;
                                          outText.Clear();
                                          Range ra = new Range(0, 4);       // 
                                          Range rb = new Range(5, 9);       // Contiguous with ra
                                          Range rc = new Range(10, 14);     // Contiguous with rb
                                          Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                          Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                          Range rf = new Range(16, 19);     // Not contiguous with anything.
                                          Range rg = new Range(0, 0);       // Single element.
                                          Range rh = new Range(1, 1);       // Single element.
                                          Range ri = new Range(2, 2);       // Single element.
                                          Range rj = new Range(0, 19);      // All elements.
                                          Range rk = new Range(0, 4);       // Identical to ra
                              
                                          CheckInt(ra.Count, 5);
                                          CheckInt(ra.Min, 0);
                                          CheckInt(ra.Max, 4);
                                          CheckString(ra, "(0:4)");
                                          CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                              
                                          Check(Range.GetEmpty(), new int\[0\]);
                              
                                          Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                          Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                          Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                          Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                          Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                          Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                          Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                          Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                          Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                          Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                          CheckInt(ra.UnionWith(rc).Count, 10);
                                          CheckInt(ra.UnionWith(rc).Min, 0);
                                          CheckInt(ra.UnionWith
                              
                              S Offline
                              S Offline
                              Slacker007
                              wrote on last edited by
                              #17

                              I don't always test my code, but when I do, I do it in Production.

                              E 1 Reply Last reply
                              0
                              • OriginalGriffO OriginalGriff

                                At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                    public static string Run()
                                        {
                                        try
                                            {
                                            testsRun = 0;
                                            testsPassed = 0;
                                            testsFailed = 0;
                                            outText.Clear();
                                            Range ra = new Range(0, 4);       // 
                                            Range rb = new Range(5, 9);       // Contiguous with ra
                                            Range rc = new Range(10, 14);     // Contiguous with rb
                                            Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                            Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                            Range rf = new Range(16, 19);     // Not contiguous with anything.
                                            Range rg = new Range(0, 0);       // Single element.
                                            Range rh = new Range(1, 1);       // Single element.
                                            Range ri = new Range(2, 2);       // Single element.
                                            Range rj = new Range(0, 19);      // All elements.
                                            Range rk = new Range(0, 4);       // Identical to ra
                                
                                            CheckInt(ra.Count, 5);
                                            CheckInt(ra.Min, 0);
                                            CheckInt(ra.Max, 4);
                                            CheckString(ra, "(0:4)");
                                            CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                                
                                            Check(Range.GetEmpty(), new int\[0\]);
                                
                                            Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                            Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                            Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                            Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                            Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                            Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                            Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                            Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                            Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                            Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                            CheckInt(ra.UnionWith(rc).Count, 10);
                                            CheckInt(ra.UnionWith(rc).Min, 0);
                                            CheckInt(ra.UnionWith
                                
                                T Offline
                                T Offline
                                TNCaver
                                wrote on last edited by
                                #18

                                I'm both old and old-fashioned. I view the unit testing fad with the same disdain as I do Scrum. It's double the work and I am set in my ways for testing. I build internal-facing apps only, and I just don't see the benefit to TDD. That's what users and UAT is for. :laugh: But I am impressed with your test code. Kind of already looks all unit testy to me.

                                If you think 'goto' is evil, try writing an Assembly program without JMP.

                                M 1 Reply Last reply
                                0
                                • T TNCaver

                                  I'm both old and old-fashioned. I view the unit testing fad with the same disdain as I do Scrum. It's double the work and I am set in my ways for testing. I build internal-facing apps only, and I just don't see the benefit to TDD. That's what users and UAT is for. :laugh: But I am impressed with your test code. Kind of already looks all unit testy to me.

                                  If you think 'goto' is evil, try writing an Assembly program without JMP.

                                  M Offline
                                  M Offline
                                  MarkTJohnson
                                  wrote on last edited by
                                  #19

                                  I'm old too. Had a manager who was into TDD. He said things like "write the test before the method" How in the blue heck am I supposed to write a test for something I haven't figured out what it's supposed to do yet? Mercifully he moved to Washington state then Idaho. Don't have to deal with him anymore.

                                  I’ve given up trying to be calm. However, I am open to feeling slightly less agitated.

                                  R L 2 Replies Last reply
                                  0
                                  • OriginalGriffO OriginalGriff

                                    At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                        public static string Run()
                                            {
                                            try
                                                {
                                                testsRun = 0;
                                                testsPassed = 0;
                                                testsFailed = 0;
                                                outText.Clear();
                                                Range ra = new Range(0, 4);       // 
                                                Range rb = new Range(5, 9);       // Contiguous with ra
                                                Range rc = new Range(10, 14);     // Contiguous with rb
                                                Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                                Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                                Range rf = new Range(16, 19);     // Not contiguous with anything.
                                                Range rg = new Range(0, 0);       // Single element.
                                                Range rh = new Range(1, 1);       // Single element.
                                                Range ri = new Range(2, 2);       // Single element.
                                                Range rj = new Range(0, 19);      // All elements.
                                                Range rk = new Range(0, 4);       // Identical to ra
                                    
                                                CheckInt(ra.Count, 5);
                                                CheckInt(ra.Min, 0);
                                                CheckInt(ra.Max, 4);
                                                CheckString(ra, "(0:4)");
                                                CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                                    
                                                Check(Range.GetEmpty(), new int\[0\]);
                                    
                                                Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                                Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                                Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                                Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                                Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                                Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                                Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                                Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                                Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                                Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                                CheckInt(ra.UnionWith(rc).Count, 10);
                                                CheckInt(ra.UnionWith(rc).Min, 0);
                                                CheckInt(ra.UnionWith
                                    
                                    R Offline
                                    R Offline
                                    Ravi Bhavnani
                                    wrote on last edited by
                                    #20

                                    OriginalGriff wrote:

                                    but should I embrace unit testing?

                                    I do, because it lets me sleep at night. :) But I'd be lying if I said I do TDD - I don't.  I write unit tests after the fact (but I do write them), and after I've written integration tests.  Why?  Because I find them more valuable than unit tests, but don't consider them to be a substitute for unit tests.  Integration tests first, then unit tests.  At least that's how I run. /ravi

                                    My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                                    1 Reply Last reply
                                    0
                                    • OriginalGriffO OriginalGriff

                                      At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                          public static string Run()
                                              {
                                              try
                                                  {
                                                  testsRun = 0;
                                                  testsPassed = 0;
                                                  testsFailed = 0;
                                                  outText.Clear();
                                                  Range ra = new Range(0, 4);       // 
                                                  Range rb = new Range(5, 9);       // Contiguous with ra
                                                  Range rc = new Range(10, 14);     // Contiguous with rb
                                                  Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                                  Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                                  Range rf = new Range(16, 19);     // Not contiguous with anything.
                                                  Range rg = new Range(0, 0);       // Single element.
                                                  Range rh = new Range(1, 1);       // Single element.
                                                  Range ri = new Range(2, 2);       // Single element.
                                                  Range rj = new Range(0, 19);      // All elements.
                                                  Range rk = new Range(0, 4);       // Identical to ra
                                      
                                                  CheckInt(ra.Count, 5);
                                                  CheckInt(ra.Min, 0);
                                                  CheckInt(ra.Max, 4);
                                                  CheckString(ra, "(0:4)");
                                                  CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                                      
                                                  Check(Range.GetEmpty(), new int\[0\]);
                                      
                                                  Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                                  Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                                  Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                                  Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                                  Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                                  Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                                  Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                                  Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                                  Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                                  Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                                  CheckInt(ra.UnionWith(rc).Count, 10);
                                                  CheckInt(ra.UnionWith(rc).Min, 0);
                                                  CheckInt(ra.UnionWith
                                      
                                      R Offline
                                      R Offline
                                      r_hyde
                                      wrote on last edited by
                                      #21

                                      What you're doing, at least in the example you've given, is not too far off from the way the "cool kids" are doing unit testing. You're doing the whole AAA thing (arrange, act, assert), you've just bundled all of your test cases into a monolithic block. Since each assertion in your example depends on the outcome of exactly one action, and no action depends on the outcome of any other action, this could be made to fit into the modern unit testing box very easily by just breaking it up into a method-per-test structure, but I couldn't really make a strong case for why you should bother. Things might change if the code under test isn't quite as simple as in your example though, for example if there are dependencies that need to be mocked/stubbed.

                                      1 Reply Last reply
                                      0
                                      • M MarkTJohnson

                                        I'm old too. Had a manager who was into TDD. He said things like "write the test before the method" How in the blue heck am I supposed to write a test for something I haven't figured out what it's supposed to do yet? Mercifully he moved to Washington state then Idaho. Don't have to deal with him anymore.

                                        I’ve given up trying to be calm. However, I am open to feeling slightly less agitated.

                                        R Offline
                                        R Offline
                                        Ravi Bhavnani
                                        wrote on last edited by
                                        #22

                                        MarkTJohnson wrote:

                                        How in the blue heck am I supposed to write a test for something I haven't figured out what it's supposed to do yet?

                                        You don't.  You must define the contract you're testing in its entirety before you can write a test for it.  Otherwise (as you said), how do you know what to test?  If the contract evolves, so must the tests. /ravi

                                        My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                                        1 Reply Last reply
                                        0
                                        • OriginalGriffO OriginalGriff

                                          At the moment, when I create a public class called Foo, I also create a static test class called FooTester which exercises the public members of the class as best I can. For example, my non-contiguous range class Range has a RangeTest class that looks like this:

                                              public static string Run()
                                                  {
                                                  try
                                                      {
                                                      testsRun = 0;
                                                      testsPassed = 0;
                                                      testsFailed = 0;
                                                      outText.Clear();
                                                      Range ra = new Range(0, 4);       // 
                                                      Range rb = new Range(5, 9);       // Contiguous with ra
                                                      Range rc = new Range(10, 14);     // Contiguous with rb
                                                      Range rd = new Range(1, 3);       // Intersects ra, not contiguous with rb
                                                      Range re = new Range(6, 8);       // Intersects rb, not contiguous with rc
                                                      Range rf = new Range(16, 19);     // Not contiguous with anything.
                                                      Range rg = new Range(0, 0);       // Single element.
                                                      Range rh = new Range(1, 1);       // Single element.
                                                      Range ri = new Range(2, 2);       // Single element.
                                                      Range rj = new Range(0, 19);      // All elements.
                                                      Range rk = new Range(0, 4);       // Identical to ra
                                          
                                                      CheckInt(ra.Count, 5);
                                                      CheckInt(ra.Min, 0);
                                                      CheckInt(ra.Max, 4);
                                                      CheckString(ra, "(0:4)");
                                                      CheckString(ra.UnionWith(re), "(0:4) | (6:8)");
                                          
                                                      Check(Range.GetEmpty(), new int\[0\]);
                                          
                                                      Check(ra, new int\[\] { 0, 1, 2, 3, 4, });
                                                      Check(new Range(new int\[\] { 0, 1, 2, 5, 6, 7 }.AsEnumerable()), new int\[\] { 0, 1, 2, 5, 6, 7 });
                                                      Check(ra.UnionWith(ra), new int\[\] { 0, 1, 2, 3, 4 });
                                                      Check(ra.UnionWith(rb), new int\[\] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
                                                      Check(rb.UnionWith(rc), new int\[\] { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 });
                                                      Check(ra.UnionWith(rc), new int\[\] { 0, 1, 2, 3, 4, 10, 11, 12, 13, 14 });
                                                      Check(ra.UnionWith(re), new int\[\] { 0, 1, 2, 3, 4, 6, 7, 8 });
                                                      Check(ra.UnionWith(rg), new int\[\] { 0, 1, 2, 3, 4 });
                                                      Check(rb.UnionWith(rg), new int\[\] { 0, 5, 6, 7, 8, 9 });
                                                      Check(rg.UnionWith(rh).UnionWith(ri), new int\[\] { 0, 1, 2 });
                                                      CheckInt(ra.UnionWith(rc).Count, 10);
                                                      CheckInt(ra.UnionWith(rc).Min, 0);
                                                      CheckInt(ra.UnionWith
                                          
                                          M Offline
                                          M Offline
                                          Mycroft Holmes
                                          wrote on last edited by
                                          #23

                                          I :laugh: and :laugh: reading the comments here, old farts who are set in their ways - who basically do what the cool aid drinkers want to call by a new name TDD - almost completely done, I once had an agile "evangelist" asses our methods and conclude that we already do close to agile (same methodology I had been using for 30+ years), she left us alone and concentrated on another team, poor bastards. Stick with what you know and do, it works, it is tried and tested and your in depth knowledge of how it works is invaluable.

                                          Never underestimate the power of human stupidity - RAH I'm old. I know stuff - JSOP

                                          L 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups