aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2023-07-11 09:22:59 -0700
committerMike Buland <eichlan@xagasoft.com>2023-07-11 09:22:59 -0700
commit3424954adfec2b2aa862d8c7ddf8f6adc433b896 (patch)
tree33f324073af535339776c3cf11c1312f9645697a
parentfd7583acc0adcce2fa63d21755091ddb3077aa14 (diff)
downloadlibbu++-3424954adfec2b2aa862d8c7ddf8f6adc433b896.tar.gz
libbu++-3424954adfec2b2aa862d8c7ddf8f6adc433b896.tar.bz2
libbu++-3424954adfec2b2aa862d8c7ddf8f6adc433b896.tar.xz
libbu++-3424954adfec2b2aa862d8c7ddf8f6adc433b896.zip
Tweaked/improved tests.
-rw-r--r--src/unit/blob.unit4
-rw-r--r--src/unit/blobbuilder.unit7
2 files changed, 4 insertions, 7 deletions
diff --git a/src/unit/blob.unit b/src/unit/blob.unit
index 6f98cfc..76f4baf 100644
--- a/src/unit/blob.unit
+++ b/src/unit/blob.unit
@@ -107,9 +107,9 @@ suite Blob
107 const char *sDat = "abcdefghijklmnopqrstuvwxyz"; 107 const char *sDat = "abcdefghijklmnopqrstuvwxyz";
108 Bu::Blob bDat( sDat ); 108 Bu::Blob bDat( sDat );
109 109
110 Bu::Blob::iterator i2; 110 Bu::Blob::const_iterator i2;
111 const char *sCmp = sDat; 111 const char *sCmp = sDat;
112 for( Bu::Blob::iterator i = bDat.begin(); i; i++, sCmp++ ) 112 for( Bu::Blob::const_iterator i = bDat.begin(); i; i++, sCmp++ )
113 { 113 {
114 unitTest( *i == *sCmp ); 114 unitTest( *i == *sCmp );
115 if( *i == 'k' ) 115 if( *i == 'k' )
diff --git a/src/unit/blobbuilder.unit b/src/unit/blobbuilder.unit
index 7f3fb93..16da92c 100644
--- a/src/unit/blobbuilder.unit
+++ b/src/unit/blobbuilder.unit
@@ -17,15 +17,13 @@ suite BlobBuilder
17{ 17{
18 test append 18 test append
19 { 19 {
20 /* 20
21 Bu::BlobBuilder a; 21 Bu::BlobBuilder a;
22 a.append("a"); 22 a.append("a");
23 a.append("bc"); 23 a.append("bc");
24 a += "def"; 24 a += "def";
25 Bu::println(">%1<\n\n").arg( a.getBlob() );
26 a.append("abcdef"); 25 a.append("abcdef");
27 Bu::println(">%1<\n\n").arg( a.getBlob() ); 26
28 */
29 } 27 }
30 28
31 test appendChar 29 test appendChar
@@ -35,7 +33,6 @@ suite BlobBuilder
35 { 33 {
36 a += 'A'; 34 a += 'A';
37 } 35 }
38 Bu::println("%1").arg( a.getBlob() );
39 unitTest( a.getBlob() == "AAAAAAAAAAAAAAAAAAAA" ); 36 unitTest( a.getBlob() == "AAAAAAAAAAAAAAAAAAAA" );
40 } 37 }
41} 38}