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. Unit Testing Frameworks

Unit Testing Frameworks

Scheduled Pinned Locked Moved The Lounge
c++visual-studiocomtestingbeta-testing
19 Posts 13 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.
  • D David Stone

    He's poking fun at those Plain English guys. But it's nice to know how you feel about espeir now. ;)

    They dress you up in white satin, And give you your very own pair of wings In August and Everything After

    I'm after everything

    P Offline
    P Offline
    Paul Watson
    wrote on last edited by
    #10

    espeir does irony but he never jokes. Above was sarcasm however. regards, Paul Watson Ireland Feed Henry! K(arl) wrote: oh, and BTW, CHRISTIAN ISN'T A PARADOX, HE IS A TASMANIAN!

    adapted from toxcct:

    while (!enough)
    sprintf 0 || 1
    do

    N 1 Reply Last reply
    0
    • P Paul Watson

      espeir does irony but he never jokes. Above was sarcasm however. regards, Paul Watson Ireland Feed Henry! K(arl) wrote: oh, and BTW, CHRISTIAN ISN'T A PARADOX, HE IS A TASMANIAN!

      adapted from toxcct:

      while (!enough)
      sprintf 0 || 1
      do

      N Offline
      N Offline
      Nish Nishant
      wrote on last edited by
      #11

      Paul Watson wrote:

      espeir does irony but he never jokes. Above was sarcasm however.

      The man's behavior has been thoroughly analyzed, eh? Regards, Nish


      Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
      The Ultimate Grid - The #1 MFC grid out there!

      R P C 3 Replies Last reply
      0
      • N Nish Nishant

        Paul Watson wrote:

        espeir does irony but he never jokes. Above was sarcasm however.

        The man's behavior has been thoroughly analyzed, eh? Regards, Nish


        Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
        The Ultimate Grid - The #1 MFC grid out there!

        R Offline
        R Offline
        Red Stateler
        wrote on last edited by
        #12

        That man is correct. I do not joke...Ever. :((

        1 Reply Last reply
        0
        • N Nish Nishant

          Paul Watson wrote:

          espeir does irony but he never jokes. Above was sarcasm however.

          The man's behavior has been thoroughly analyzed, eh? Regards, Nish


          Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
          The Ultimate Grid - The #1 MFC grid out there!

          P Offline
          P Offline
          Paul Watson
          wrote on last edited by
          #13

          He ingratiated himself with me over my Vole post. regards, Paul Watson Ireland Feed Henry! K(arl) wrote: oh, and BTW, CHRISTIAN ISN'T A PARADOX, HE IS A TASMANIAN!

          adapted from toxcct:

          while (!enough)
          sprintf 0 || 1
          do

          1 Reply Last reply
          0
          • N Nish Nishant

            Paul Watson wrote:

            espeir does irony but he never jokes. Above was sarcasm however.

            The man's behavior has been thoroughly analyzed, eh? Regards, Nish


            Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
            The Ultimate Grid - The #1 MFC grid out there!

            C Offline
            C Offline
            Colin Angus Mackay
            wrote on last edited by
            #14

            Nishant Sivakumar wrote:

            The man's behavior has been thoroughly analyzed, eh?

            Picking up a Canadian accent? ColinMackay.net Scottish Developers are looking for speakers for user group sessions over the next few months. Do you want to know more?

            N 1 Reply Last reply
            0
            • C Colin Angus Mackay

              Nishant Sivakumar wrote:

              The man's behavior has been thoroughly analyzed, eh?

              Picking up a Canadian accent? ColinMackay.net Scottish Developers are looking for speakers for user group sessions over the next few months. Do you want to know more?

              N Offline
              N Offline
              Nish Nishant
              wrote on last edited by
              #15

              Colin Angus Mackay wrote:

              Picking up a Canadian accent?

              Only in my writing :) Regards, Nish


              Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
              The Ultimate Grid - The #1 MFC grid out there!

              1 Reply Last reply
              0
              • P peterchen

                My Unit Test Framework:

                #include <assert.h>

                (actually I'm using _ASSERTE / ATLASSERT, but it's the spirit that counts) :cool: sample usage:

                void CheckTrans(CLangTranslator & trans, LPCTSTR in, LPCTSTR out)
                {
                CString s(in);
                trans.Translate(s);
                assert(s == out);
                }

                void Test_Translator()
                {
                // ... setup

                // simple replacement
                CheckTrans(trans, "{Head1}", "Ihre Werte bitte");

                // replacement with surrounding text
                CheckTrans(trans, "|-- {Head1} --|", "|-- Ihre Werte bitte --|");

                // partial prefix
                CheckTrans(trans, "{Head1{Head1}", "{Head1Ihre Werte bitte" );

                // multiple replacements, args expected, none provided
                CheckTrans(trans,
                "|-- {head1} --|| {value1} |",
                "|-- Ihre Werte bitte --|| Explosion: {1}..{2} Hz |");

                // two arguments expected, two given:
                CheckTrans(trans, "{value1:10;20}", "Explosion: 10..20 Hz" );

                // two arguments expected, one given:
                CheckTrans(trans, "{value1:10}", "Explosion: 10..{2} Hz" );

                // two arguments expected, three given:
                CheckTrans(trans, "{value1:10;20;30}", "Explosion: 10..20 Hz" );

                // ...teardown
                }

                int main()
                {
                Test_Translator();
                }

                Start it under the debugger. If the assert fires, you can go immediately to the point of failure, examine values etc. It's fun, it's simple, it makes sense.


                Some of us walk the memory lane, others plummet into a rabbit hole
                Tree in C# || Fold With Us! || sighist

                T Offline
                T Offline
                TheGreatAndPowerfulOz
                wrote on last edited by
                #16

                ASSERT is Evil. Repeat 1000 times.

                S P 2 Replies Last reply
                0
                • N Nemanja Trifunovic

                  In general, Boost.Test library, although mostly I usually write just a bunch of asserts without any framework.


                  My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.

                  T Offline
                  T Offline
                  TheGreatAndPowerfulOz
                  wrote on last edited by
                  #17

                  ASSERT is Evil. Repeat ten times.

                  1 Reply Last reply
                  0
                  • T TheGreatAndPowerfulOz

                    ASSERT is Evil. Repeat 1000 times.

                    S Offline
                    S Offline
                    Shog9 0
                    wrote on last edited by
                    #18

                    Why? Explain once. ----

                    Bots don't know when people die. --Paul Watson, RIP

                    1 Reply Last reply
                    0
                    • T TheGreatAndPowerfulOz

                      ASSERT is Evil. Repeat 1000 times.

                      P Offline
                      P Offline
                      peterchen
                      wrote on last edited by
                      #19

                      Assert is perfect for many things, but not for all. Again: why evil?


                      Some of us walk the memory lane, others plummet into a rabbit hole
                      Tree in C# || Fold With Us! || sighist

                      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