1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_BitFlags.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,559 @@
1.4 +// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// TBITFLAGS.CPP
1.18 +//
1.19 +//
1.20 +
1.21 +#include "T_BitFlags.h"
1.22 +
1.23 +// System includes
1.24 +#include <e32test.h>
1.25 +
1.26 +// Literal constants
1.27 +_LIT(KTestTitle, "TestBitFlags");
1.28 +
1.29 +RTest TheTest(KTestTitle);
1.30 +
1.31 +
1.32 +void TestBitFlags::TestSetAll()
1.33 + {
1.34 + iTestFlags.SetAll();
1.35 + }
1.36 +
1.37 +void TestBitFlags::TestClearAll()
1.38 + {
1.39 + iTestFlags.ClearAll();
1.40 + }
1.41 +
1.42 +void TestBitFlags::TestSetL(TInt aColor)
1.43 + {
1.44 + iTestFlags.Set(aColor);
1.45 + if (!(iTestFlags.IsSet(aColor)))
1.46 + User::Leave(KErrGeneral);
1.47 + }
1.48 +
1.49 +void TestBitFlags::TestClearL(TInt aColor)
1.50 + {
1.51 + iTestFlags.Clear(aColor);
1.52 + if (iTestFlags.IsSet(aColor))
1.53 + User::Leave(KErrGeneral);
1.54 + }
1.55 +
1.56 +void TestBitFlags::TestAssign(TInt aColor, TBool aSetOrClear)
1.57 + {
1.58 + iTestFlags.Assign(aColor, aSetOrClear);
1.59 + }
1.60 +
1.61 +void TestBitFlags::TestToggleL(TInt aColor)
1.62 + {
1.63 + TBool isSet = iTestFlags.IsSet(aColor);
1.64 + iTestFlags.Toggle(aColor);
1.65 + if (isSet == iTestFlags.IsSet(aColor))
1.66 + User::Leave(KErrGeneral);
1.67 + }
1.68 +
1.69 +TBool TestBitFlags::TestOperator1(TInt aColor) //testing operator []
1.70 + {
1.71 + return iTestFlags.operator[](aColor);
1.72 + }
1.73 +
1.74 +void TestBitFlags::TestOperator2() // test operator =
1.75 + {
1.76 + iFlagA.Set(TestBitFlags::EBlue);
1.77 + iFlagB = iFlagA;
1.78 + TheTest(iFlagB == iFlagA);
1.79 +
1.80 + iFlagB.Set(TestBitFlags::ERed);
1.81 + TheTest(!(iFlagB == iFlagA));
1.82 + }
1.83 +
1.84 +void TestBitFlags::TestOperator3() //test operator ==
1.85 + {
1.86 + iFlagA.Set(TestBitFlags::EBlue);
1.87 + iFlagB.Set(TestBitFlags::EBlue);
1.88 + TheTest(iFlagA == iFlagB);
1.89 +
1.90 + iFlagB.Set(TestBitFlags::ERed);
1.91 + TheTest(!(iFlagB == iFlagA));
1.92 + }
1.93 +
1.94 +TBool TestBitFlags::TestIsSet(TInt aColor)
1.95 + {
1.96 + return iTestFlags.IsSet(aColor);
1.97 + }
1.98 +
1.99 +TBool TestBitFlags::TestIsClear(TInt aColor)
1.100 + {
1.101 + return iTestFlags.IsClear(aColor);
1.102 + }
1.103 +
1.104 +TInt TestBitFlags::TestValue()
1.105 + {
1.106 + return iTestFlags.Value();
1.107 + }
1.108 +
1.109 +/**
1.110 +@SYMTestCaseID SYSLIB-BAFL-CT-0468
1.111 +@SYMTestCaseDesc Tests the behaviour of bits
1.112 +@SYMTestPriority High
1.113 +@SYMTestActions Tests for bits by setting and clearing
1.114 +@SYMTestExpectedResults Test must not fail
1.115 +@SYMREQ REQ0000
1.116 +*/
1.117 +void DoTest1()
1.118 + {
1.119 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0468 Pure Set and Clear and related functions only "));
1.120 + TestBitFlags test;
1.121 + TBool checkTestFlags;
1.122 + TInt checkValue;
1.123 +
1.124 + TRAPD(errCode, test.TestSetL(TestBitFlags::EBlue));
1.125 + TheTest(errCode==KErrNone);
1.126 +
1.127 + checkTestFlags = test.TestIsSet(TestBitFlags::EBlue); //expect 1
1.128 + checkValue = test.TestValue(); //expect 1 (hex)
1.129 + TheTest(checkTestFlags == 1);
1.130 + TheTest(checkValue == 1);
1.131 +
1.132 + TRAP(errCode, test.TestSetL(TestBitFlags::EGreen));
1.133 + TheTest(errCode==KErrNone);
1.134 + checkTestFlags = test.TestIsSet(TestBitFlags::EGreen); //expect 4
1.135 + TheTest(checkTestFlags == 4);
1.136 + checkTestFlags = test.TestIsClear(TestBitFlags::EGreen); //expect 0 - means it hasnt been cleared
1.137 + checkValue = test.TestValue(); //expect 5 (hex)
1.138 + TheTest(checkTestFlags == 0);
1.139 + TheTest(checkValue == 5);
1.140 +
1.141 + TRAP(errCode, test.TestSetL(TestBitFlags::EYellow));
1.142 + TheTest(errCode==KErrNone);
1.143 + checkTestFlags = test.TestIsSet(TestBitFlags::EYellow); //expect 8
1.144 + checkValue = test.TestValue(); //expect d (hex)
1.145 + TheTest(checkTestFlags == 8);
1.146 + TheTest(checkValue == 13);
1.147 +
1.148 + test.TestClearL(TestBitFlags::EGreen);
1.149 + checkTestFlags = test.TestIsClear(TestBitFlags::EGreen); //expect 1
1.150 + checkValue = test.TestValue(); //expect 9 (hex)
1.151 + TheTest(checkTestFlags == 1);
1.152 + TheTest(checkValue == 9);
1.153 +
1.154 + checkTestFlags = test.TestIsClear(TestBitFlags::ERed); //expect 1 - means it has been cleared
1.155 + checkValue = test.TestValue(); //expect 9 (hex)
1.156 + TheTest(checkTestFlags == 1);
1.157 + TheTest(checkValue == 9);
1.158 +
1.159 + test.TestSetAll();
1.160 + checkTestFlags = test.TestIsSet(TestBitFlags::EBlue);
1.161 + TheTest(checkTestFlags == 1);
1.162 + checkTestFlags = test.TestIsSet(TestBitFlags::ERed);
1.163 + TheTest(checkTestFlags == 2);
1.164 + checkTestFlags = test.TestIsSet(TestBitFlags::EGreen);
1.165 + TheTest(checkTestFlags == 4);
1.166 + checkTestFlags = test.TestIsSet(TestBitFlags::EYellow);
1.167 + TheTest(checkTestFlags == 8);
1.168 + checkTestFlags = test.TestIsSet(TestBitFlags::EPurple);
1.169 + TheTest(checkTestFlags == 16);
1.170 + checkTestFlags = test.TestIsSet(TestBitFlags::EBlack);
1.171 + TheTest(checkTestFlags == 32);
1.172 + checkTestFlags = test.TestIsSet(TestBitFlags::EWhite);
1.173 + TheTest(checkTestFlags == 64);
1.174 + checkTestFlags = test.TestIsSet(TestBitFlags::EGrey);
1.175 + TheTest(checkTestFlags == 128);
1.176 + checkValue = test.TestValue(); //expect 0xffffffff (hex)
1.177 + TheTest(checkValue == -1);
1.178 +
1.179 +
1.180 + test.TestClearL(TestBitFlags::EBlue);
1.181 + checkTestFlags = test.TestIsClear(TestBitFlags::EBlue);
1.182 + TheTest(checkTestFlags == 1);
1.183 + test.TestClearL(TestBitFlags::ERed);
1.184 + checkTestFlags = test.TestIsClear(TestBitFlags::ERed);
1.185 + TheTest(checkTestFlags == 1);
1.186 + test.TestClearL(TestBitFlags::EGreen);
1.187 + checkTestFlags = test.TestIsClear(TestBitFlags::EGreen);
1.188 + TheTest(checkTestFlags == 1);
1.189 + test.TestClearL(TestBitFlags::EYellow);
1.190 + checkTestFlags = test.TestIsClear(TestBitFlags::EYellow);
1.191 + TheTest(checkTestFlags == 1);
1.192 + test.TestClearL(TestBitFlags::EPurple);
1.193 + checkTestFlags = test.TestIsClear(TestBitFlags::EPurple);
1.194 + TheTest(checkTestFlags == 1);
1.195 + test.TestClearL(TestBitFlags::EBlack);
1.196 + checkTestFlags = test.TestIsClear(TestBitFlags::EBlack);
1.197 + TheTest(checkTestFlags == 1);
1.198 + test.TestClearL(TestBitFlags::EWhite);
1.199 + checkTestFlags = test.TestIsClear(TestBitFlags::EWhite);
1.200 + TheTest(checkTestFlags == 1);
1.201 + test.TestClearL(TestBitFlags::EGrey);
1.202 + checkTestFlags = test.TestIsClear(TestBitFlags::EGrey);
1.203 + TheTest(checkTestFlags == 1);
1.204 + checkValue = test.TestValue(); //expect 0xffffff00
1.205 + TheTest(checkValue == -256);
1.206 +
1.207 + test.TestClearAll();
1.208 + checkValue = test.TestValue();
1.209 + TheTest(checkValue ==0);
1.210 + }
1.211 +
1.212 +/**
1.213 +@SYMTestCaseID SYSLIB-BAFL-CT-0469
1.214 +@SYMTestCaseDesc Tests the behaviour of bits
1.215 +@SYMTestPriority High
1.216 +@SYMTestActions Tests for bits by reading them back (assign function)
1.217 +@SYMTestExpectedResults Test must not fail
1.218 +@SYMREQ REQ0000
1.219 +*/
1.220 +void DoTest2()
1.221 + {
1.222 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0469 Assign function "));
1.223 + TestBitFlags test;
1.224 + TBool checkTestFlags;
1.225 + TInt checkValue;
1.226 +
1.227 + test.TestAssign(TestBitFlags::ERed, 1);
1.228 + checkTestFlags = test.TestIsSet(TestBitFlags::ERed); //expect 2
1.229 + checkValue = test.TestValue(); //expect 2
1.230 + TheTest(checkTestFlags == 2);
1.231 + TheTest(checkValue == 2);
1.232 +
1.233 + test.TestAssign(TestBitFlags::EWhite, 1);
1.234 + checkTestFlags = test.TestIsSet(TestBitFlags::EWhite); //expect 64
1.235 + checkValue = test.TestValue(); //expect 66
1.236 + TheTest(checkTestFlags == 64);
1.237 + TheTest(checkValue == 66);
1.238 +
1.239 + test.TestAssign(TestBitFlags::ERed, 0);
1.240 + checkTestFlags = test.TestIsClear(TestBitFlags::ERed); //expect 1
1.241 + checkValue = test.TestValue(); //expect 64
1.242 + TheTest(checkTestFlags == 1);
1.243 + TheTest(checkValue == 64);
1.244 +
1.245 + test.TestAssign(TestBitFlags::ERed, 3); //test anything other than 1 will activate Set function
1.246 + checkTestFlags = test.TestIsSet(TestBitFlags::ERed); //expect 2
1.247 + checkValue = test.TestValue(); //expect 66
1.248 + TheTest(checkTestFlags == 2);
1.249 + TheTest(checkValue == 66);
1.250 + }
1.251 +
1.252 +/**
1.253 +@SYMTestCaseID SYSLIB-BAFL-CT-0470
1.254 +@SYMTestCaseDesc Tests the behaviour of bits
1.255 +@SYMTestPriority High
1.256 +@SYMTestActions Tests for [] operator
1.257 +@SYMTestExpectedResults Test must not fail
1.258 +@SYMREQ REQ0000
1.259 +*/
1.260 +void DoTest3()
1.261 + {
1.262 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0470 operator [] "));
1.263 +
1.264 + TestBitFlags test;
1.265 + TBool checkTestFlags;
1.266 +
1.267 + TRAPD(errCode, test.TestSetL(TestBitFlags::EBlue));
1.268 + TheTest(errCode==KErrNone);
1.269 +
1.270 + checkTestFlags = test.TestOperator1(TestBitFlags::ERed); //0
1.271 + TheTest(checkTestFlags == 0);
1.272 +
1.273 + TRAP(errCode, test.TestSetL(TestBitFlags::EYellow));
1.274 + TheTest(errCode==KErrNone);
1.275 +
1.276 + checkTestFlags = test.TestOperator1(TestBitFlags::EGreen); //0
1.277 + TheTest(checkTestFlags == 0);
1.278 +
1.279 + checkTestFlags = test.TestOperator1(TestBitFlags::EBlack); //0
1.280 + TheTest(checkTestFlags == 0);
1.281 +
1.282 + checkTestFlags = test.TestOperator1(TestBitFlags::EYellow); //8
1.283 + TheTest(checkTestFlags == 8);
1.284 +
1.285 + checkTestFlags = test.TestOperator1(TestBitFlags::EBlue); //1
1.286 + TheTest(checkTestFlags == 1);
1.287 + }
1.288 +
1.289 +/**
1.290 +@SYMTestCaseID SYSLIB-BAFL-CT-0471
1.291 +@SYMTestCaseDesc Tests the behaviour of bits
1.292 +@SYMTestPriority High
1.293 +@SYMTestActions Tests for == operator
1.294 +@SYMTestExpectedResults Test must not fail
1.295 +@SYMREQ REQ0000
1.296 +*/
1.297 +void DoTest4()
1.298 + {
1.299 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0471 Operator== "));
1.300 + TestBitFlags test;
1.301 + test.TestOperator3();
1.302 + }
1.303 +
1.304 +/**
1.305 +@SYMTestCaseID SYSLIB-BAFL-CT-0472
1.306 +@SYMTestCaseDesc Tests the behaviour of bits
1.307 +@SYMTestPriority High
1.308 +@SYMTestActions Tests for toggling the value
1.309 +@SYMTestExpectedResults Test must not fail
1.310 +@SYMREQ REQ0000
1.311 +*/
1.312 +void DoTest5()
1.313 + {
1.314 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0472 Toggle "));
1.315 + TestBitFlags test;
1.316 + TInt checkTestFlags;
1.317 +
1.318 + test.TestToggleL(TestBitFlags::EBlue);
1.319 + checkTestFlags = test.TestValue();
1.320 + TheTest(checkTestFlags == 1);
1.321 +
1.322 + test.TestToggleL(TestBitFlags::ERed);
1.323 + checkTestFlags = test.TestValue();
1.324 + TheTest(checkTestFlags == 3);
1.325 +
1.326 + test.TestToggleL(TestBitFlags::EBlue);
1.327 + checkTestFlags = test.TestValue();
1.328 + TheTest(checkTestFlags == 2);
1.329 +
1.330 + test.TestToggleL(TestBitFlags::EGreen);
1.331 + checkTestFlags = test.TestValue();
1.332 + TheTest(checkTestFlags == 6);
1.333 +
1.334 + test.TestToggleL(TestBitFlags::ERed);
1.335 + checkTestFlags = test.TestValue();
1.336 + TheTest(checkTestFlags == 4);
1.337 +
1.338 + test.TestToggleL(TestBitFlags::EGreen);
1.339 + checkTestFlags = test.TestValue();
1.340 + TheTest(checkTestFlags == 0);
1.341 +
1.342 + test.TestToggleL(TestBitFlags::EYellow);
1.343 + checkTestFlags = test.TestValue();
1.344 + TheTest(checkTestFlags == 8);
1.345 + }
1.346 +
1.347 +/**
1.348 +@SYMTestCaseID SYSLIB-BAFL-CT-0473
1.349 +@SYMTestCaseDesc Tests the behaviour of bits
1.350 +@SYMTestPriority High
1.351 +@SYMTestActions Tests for assignment operator
1.352 +@SYMTestExpectedResults Test must not fail
1.353 +@SYMREQ REQ0000
1.354 +*/
1.355 +void DoTest6()
1.356 + {
1.357 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0473 Operator= "));
1.358 + TestBitFlags test;
1.359 + test.TestOperator2();
1.360 + }
1.361 +
1.362 +// TestData
1.363 +
1.364 +TTestEnum KEnumArray[] =
1.365 + {
1.366 + ETest1, ETest2, ETest3, ETest4, ETest5, ETest6, ETest7, ETest8,
1.367 + ETest9, ETest10, ETest11, ETest12, ETest13, ETest14, ETest15, ETest16,
1.368 + ETest17, ETest18, ETest19, ETest20, ETest21, ETest22, ETest23, ETest24,
1.369 + ETest25, ETest26, ETest27, ETest28, ETest29, ETest30, ETest31, ETest32
1.370 + };
1.371 +
1.372 +/**
1.373 +@SYMTestCaseID SYSLIB-BAFL-CT-3387
1.374 +@SYMTestCaseDesc Tests the behaviour of template class when type is an enum.
1.375 +@SYMTestPriority High
1.376 +@SYMTestActions For each bit test each function in class for when T is an enum.
1.377 + It is important that this test includes the MSB bit because enums
1.378 + are stored as an unsigned int and the MSB is the signed bit.
1.379 +@SYMTestExpectedResults Flags must be set and reset to the expected values
1.380 +@SYMDEF DEF102233
1.381 +*/
1.382 +void DEF102233()
1.383 + {
1.384 + TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3387 Tests for DEF102233 "));
1.385 +
1.386 + TInt arrayPos;
1.387 + TInt bitPos;
1.388 + for(TInt x = 0; x <= 31; x++)
1.389 + {
1.390 + arrayPos = x;
1.391 + bitPos = x;
1.392 +
1.393 + // Constructor
1.394 + TBitFlagsT<TTestEnum> myBitFlagMSB1(KEnumArray[arrayPos]);
1.395 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.396 +
1.397 + // Copy Constructor
1.398 + TBitFlagsT<TTestEnum> myBitFlagMSB2(myBitFlagMSB1);
1.399 + TheTest(myBitFlagMSB2.IsSet(bitPos));
1.400 +
1.401 + // SetAll
1.402 + myBitFlagMSB1.SetAll();
1.403 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.404 +
1.405 + // ClearAll
1.406 + myBitFlagMSB1.ClearAll();
1.407 + TheTest(!myBitFlagMSB1.IsSet(bitPos));
1.408 +
1.409 + // Set and Clear
1.410 + myBitFlagMSB1.Set(bitPos);
1.411 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.412 + myBitFlagMSB1.Clear(bitPos);
1.413 + TheTest(!myBitFlagMSB1.IsSet(bitPos));
1.414 +
1.415 + // Assign
1.416 + myBitFlagMSB1.Assign(bitPos, ETrue);
1.417 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.418 + myBitFlagMSB1.Assign(bitPos, EFalse);
1.419 + TheTest(!myBitFlagMSB1.IsSet(bitPos));
1.420 +
1.421 + // Toggle
1.422 + myBitFlagMSB1.Toggle(bitPos);
1.423 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.424 + myBitFlagMSB1.Toggle(bitPos);
1.425 + TheTest(!myBitFlagMSB1.IsSet(bitPos));
1.426 +
1.427 + // operator[]
1.428 + TheTest(!myBitFlagMSB1[arrayPos]);
1.429 + myBitFlagMSB1.Set(bitPos);
1.430 + TheTest(myBitFlagMSB1[arrayPos]);
1.431 +
1.432 + // operator=
1.433 + myBitFlagMSB2 = myBitFlagMSB1;
1.434 + TheTest(myBitFlagMSB2[arrayPos]);
1.435 + myBitFlagMSB1.Toggle(bitPos);
1.436 + myBitFlagMSB2 = myBitFlagMSB1;
1.437 + TheTest(!myBitFlagMSB2[arrayPos]);
1.438 +
1.439 + // operator==
1.440 + TheTest(myBitFlagMSB1 == myBitFlagMSB2);
1.441 + myBitFlagMSB1.Toggle(bitPos);
1.442 + myBitFlagMSB2.Toggle(bitPos);
1.443 + TheTest(myBitFlagMSB1 == myBitFlagMSB2);
1.444 + myBitFlagMSB1.Toggle(bitPos);
1.445 + TheTest(!(myBitFlagMSB1 == myBitFlagMSB2));
1.446 +
1.447 + // IsSet and IsClear
1.448 + TheTest(myBitFlagMSB1.IsClear(bitPos));
1.449 + myBitFlagMSB1.Toggle(bitPos);
1.450 + TheTest(myBitFlagMSB1.IsSet(bitPos));
1.451 +
1.452 + // Value and SetValue
1.453 + myBitFlagMSB1.ClearAll();
1.454 + myBitFlagMSB1.SetValue(KEnumArray[arrayPos]);
1.455 + TheTest(myBitFlagMSB1.Value() == KEnumArray[arrayPos]);
1.456 +
1.457 + // Value against a signed integer
1.458 + TInt signedInteger = KEnumArray[arrayPos];
1.459 + TheTest(myBitFlagMSB1.Value() == signedInteger);
1.460 +
1.461 + // Value against an unsigned integer
1.462 + TUint unsignedInteger = KEnumArray[arrayPos];
1.463 + TheTest(myBitFlagMSB1.Value() == unsignedInteger);
1.464 +
1.465 + // iFlags
1.466 + myBitFlagMSB1.ClearAll();
1.467 + myBitFlagMSB1.iFlags = KEnumArray[arrayPos];
1.468 + TheTest(myBitFlagMSB1.Value() == KEnumArray[arrayPos]);
1.469 + }
1.470 + // check MSB was tested
1.471 + TheTest(KEnumArray[arrayPos] == ETest32);
1.472 + TheTest(bitPos == 31);
1.473 + }
1.474 +
1.475 +/**
1.476 +@SYMTestCaseID BASESRVCS-BAFL-CT-4078
1.477 +@SYMTestCaseDesc tests the IsSet API for out of bounds index values.
1.478 +@SYMTestPriority High
1.479 +@SYMTestActions query flag state statinig an index that is out of bound
1.480 +@SYMTestExpectedResults should return EFalse for out of bound values
1.481 +@SYMDEF DEF130663
1.482 +*/
1.483 +void DEF130663()
1.484 + {
1.485 + // type is considered as an enum here
1.486 + TheTest.Next(_L(" @SYMTestCaseID:BASESRVCS-BAFL-CT-4078 Tests for DEF130663 "));
1.487 +
1.488 + TInt arrayPos;
1.489 + TInt bitPos;
1.490 + for(TInt x = 0; x <= 31; x++)
1.491 + {
1.492 + arrayPos = x;
1.493 + bitPos = x;
1.494 +
1.495 + // Constructor
1.496 + TBitFlagsT<TTestEnum> myBitFlag(KEnumArray[arrayPos]);
1.497 + TheTest(myBitFlag.IsSet(bitPos));
1.498 +
1.499 + //clear all and set one paricular bit
1.500 + myBitFlag.ClearAll();
1.501 + myBitFlag.Set(bitPos);
1.502 +
1.503 + // check "out of bounds" values as well
1.504 + // expected behavior is that for all out of bound values the
1.505 + // result should be EFalse for IsSet("out of bounds") call.
1.506 + // IsSet and all the functions directly calling IsSet are being tested here
1.507 + // this test in conjuction with the other cts listed here
1.508 + // should be sufficient to validate the fix
1.509 + for(TInt i = 0; i < 64; i++)
1.510 + {
1.511 + if(i==x)
1.512 + {
1.513 + TheTest(myBitFlag.IsSet(i));
1.514 + TheTest(!myBitFlag.IsClear(i));
1.515 + TheTest(myBitFlag[i]);
1.516 + }
1.517 + else
1.518 + {
1.519 + TheTest(!myBitFlag.IsSet(i));
1.520 + TheTest(myBitFlag.IsClear(i));
1.521 + TheTest(!myBitFlag[i]);
1.522 + }
1.523 + }
1.524 + }
1.525 + // check MSB was tested
1.526 + TheTest(KEnumArray[arrayPos] == ETest32);
1.527 + TheTest(bitPos == 31);
1.528 + }
1.529 +
1.530 +void RunTestsL()
1.531 + {
1.532 + DoTest1();
1.533 + DoTest2();
1.534 + DoTest3();
1.535 + DoTest4();
1.536 + DoTest5();
1.537 + DoTest6();
1.538 + DEF102233();
1.539 + DEF130663();
1.540 + }
1.541 +
1.542 +TInt E32Main()
1.543 + {
1.544 + __UHEAP_MARK;
1.545 +
1.546 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.547 + if (!cleanup)
1.548 + return KErrNoMemory;
1.549 +
1.550 + TheTest.Start(_L("TBITFLAGS "));
1.551 + TheTest.Title();
1.552 +
1.553 + TRAPD(err, RunTestsL());
1.554 + TheTest(err == KErrNone);
1.555 +
1.556 + delete cleanup;
1.557 + TheTest.End();
1.558 + TheTest.Close();
1.559 +
1.560 + __UHEAP_MARKEND;
1.561 + return KErrNone;
1.562 + }