summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/tests/test_refcounted.hpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-15 12:46:26 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-15 12:46:26 +0300
commitbf1235b017b254ba989b156c73c4ce18ba4e6c23 (patch)
tree8dd5dad68be3aa5cda16938cc3bfaa70f6faad41 /indra/llcorehttp/tests/test_refcounted.hpp
parent1e9e5a7b7629276d509c352699fb5891c2dc6587 (diff)
parente7eced3c87310b15ac20cc3cd470d67686104a14 (diff)
Merge branch 'marchcat/w-whitespace' into marchcat/x-mf-merge
Diffstat (limited to 'indra/llcorehttp/tests/test_refcounted.hpp')
-rw-r--r--indra/llcorehttp/tests/test_refcounted.hpp136
1 files changed, 68 insertions, 68 deletions
diff --git a/indra/llcorehttp/tests/test_refcounted.hpp b/indra/llcorehttp/tests/test_refcounted.hpp
index 2310812d5a..c0c8e78413 100644
--- a/indra/llcorehttp/tests/test_refcounted.hpp
+++ b/indra/llcorehttp/tests/test_refcounted.hpp
@@ -1,4 +1,4 @@
-/**
+/**
* @file test_refcounted.hpp
* @brief unit tests for the LLCoreInt::RefCounted class
*
@@ -34,93 +34,93 @@ using namespace LLCoreInt;
namespace tut
{
- struct RefCountedTestData
- {
- // the test objects inherit from this so the member functions and variables
- // can be referenced directly inside of the test functions.
- };
+ struct RefCountedTestData
+ {
+ // the test objects inherit from this so the member functions and variables
+ // can be referenced directly inside of the test functions.
+ };
- typedef test_group<RefCountedTestData> RefCountedTestGroupType;
- typedef RefCountedTestGroupType::object RefCountedTestObjectType;
- RefCountedTestGroupType RefCountedTestGroup("RefCounted Tests");
+ typedef test_group<RefCountedTestData> RefCountedTestGroupType;
+ typedef RefCountedTestGroupType::object RefCountedTestObjectType;
+ RefCountedTestGroupType RefCountedTestGroup("RefCounted Tests");
- template <> template <>
- void RefCountedTestObjectType::test<1>()
- {
- set_test_name("RefCounted construction with implicit count");
+ template <> template <>
+ void RefCountedTestObjectType::test<1>()
+ {
+ set_test_name("RefCounted construction with implicit count");
- // create a new ref counted object with an implicit reference
- RefCounted * rc = new RefCounted(true);
- ensure(rc->getRefCount() == 1);
+ // create a new ref counted object with an implicit reference
+ RefCounted * rc = new RefCounted(true);
+ ensure(rc->getRefCount() == 1);
- // release the implicit reference, causing the object to be released
- rc->release();
- }
+ // release the implicit reference, causing the object to be released
+ rc->release();
+ }
- template <> template <>
- void RefCountedTestObjectType::test<2>()
- {
- set_test_name("RefCounted construction without implicit count");
+ template <> template <>
+ void RefCountedTestObjectType::test<2>()
+ {
+ set_test_name("RefCounted construction without implicit count");
- // create a new ref counted object with an implicit reference
- RefCounted * rc = new RefCounted(false);
- ensure(rc->getRefCount() == 0);
+ // create a new ref counted object with an implicit reference
+ RefCounted * rc = new RefCounted(false);
+ ensure(rc->getRefCount() == 0);
- // add a reference
- rc->addRef();
- ensure(rc->getRefCount() == 1);
+ // add a reference
+ rc->addRef();
+ ensure(rc->getRefCount() == 1);
- // release the implicit reference, causing the object to be released
- rc->release();
- }
+ // release the implicit reference, causing the object to be released
+ rc->release();
+ }
- template <> template <>
- void RefCountedTestObjectType::test<3>()
- {
- set_test_name("RefCounted addRef and release");
+ template <> template <>
+ void RefCountedTestObjectType::test<3>()
+ {
+ set_test_name("RefCounted addRef and release");
- RefCounted * rc = new RefCounted(false);
+ RefCounted * rc = new RefCounted(false);
- for (int i = 0; i < 1024; ++i)
- {
- rc->addRef();
- }
+ for (int i = 0; i < 1024; ++i)
+ {
+ rc->addRef();
+ }
- ensure(rc->getRefCount() == 1024);
+ ensure(rc->getRefCount() == 1024);
- for (int i = 0; i < 1024; ++i)
- {
- rc->release();
- }
- }
+ for (int i = 0; i < 1024; ++i)
+ {
+ rc->release();
+ }
+ }
- template <> template <>
- void RefCountedTestObjectType::test<4>()
- {
- set_test_name("RefCounted isLastRef check");
+ template <> template <>
+ void RefCountedTestObjectType::test<4>()
+ {
+ set_test_name("RefCounted isLastRef check");
- RefCounted * rc = new RefCounted(true);
+ RefCounted * rc = new RefCounted(true);
- // with only one reference, isLastRef should be true
- ensure(rc->isLastRef());
+ // with only one reference, isLastRef should be true
+ ensure(rc->isLastRef());
- // release it to clean up memory
- rc->release();
- }
+ // release it to clean up memory
+ rc->release();
+ }
- template <> template <>
- void RefCountedTestObjectType::test<5>()
- {
- set_test_name("RefCounted noRef check");
+ template <> template <>
+ void RefCountedTestObjectType::test<5>()
+ {
+ set_test_name("RefCounted noRef check");
- RefCounted * rc = new RefCounted(false);
+ RefCounted * rc = new RefCounted(false);
- // set the noRef
- rc->noRef();
+ // set the noRef
+ rc->noRef();
- // with only one reference, isLastRef should be true
- ensure(rc->getRefCount() == RefCounted::NOT_REF_COUNTED);
- }
+ // with only one reference, isLastRef should be true
+ ensure(rc->getRefCount() == RefCounted::NOT_REF_COUNTED);
+ }
}
#endif // disabling on Win64
-#endif // TEST_LLCOREINT_REF_COUNTED_H_
+#endif // TEST_LLCOREINT_REF_COUNTED_H_