diff --git a/alib2std/test-src/extensions/UtilityTest.cpp b/alib2std/test-src/extensions/UtilityTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..7dd7748ed8f0651f788cb2c81190b415afb59053
--- /dev/null
+++ b/alib2std/test-src/extensions/UtilityTest.cpp
@@ -0,0 +1,24 @@
+#include "UtilityTest.h"
+#include <alib/utility>
+
+CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( UtilityTest, "bits" );
+CPPUNIT_TEST_SUITE_REGISTRATION( UtilityTest );
+
+void UtilityTest::setUp() {
+}
+
+void UtilityTest::tearDown() {
+}
+
+class Foo {
+public:
+	int bar ( ) {
+		return 1;
+	}
+};
+
+void UtilityTest::testProperties() {
+	ext::rvalue_ref < Foo > val ( new Foo );
+	CPPUNIT_ASSERT ( val->bar ( ) == 1 );
+}
+
diff --git a/alib2std/test-src/extensions/UtilityTest.h b/alib2std/test-src/extensions/UtilityTest.h
new file mode 100644
index 0000000000000000000000000000000000000000..a04660a51342b3c00bedcd7f04a4074c43420941
--- /dev/null
+++ b/alib2std/test-src/extensions/UtilityTest.h
@@ -0,0 +1,19 @@
+#ifndef UTILITY_TEST_H_
+#define UTILITY_TEST_H_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+class UtilityTest : public CppUnit::TestFixture
+{
+  CPPUNIT_TEST_SUITE( UtilityTest );
+  CPPUNIT_TEST( testProperties );
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+  void setUp();
+  void tearDown();
+
+  void testProperties();
+};
+
+#endif  // UTILITY_TEST_H_