basic framework, waiting for Alex's comments
diff --git a/tests/RR_test.cpp b/tests/RR_test.cpp
new file mode 100644
index 0000000..b14702d
--- /dev/null
+++ b/tests/RR_test.cpp
@@ -0,0 +1,24 @@
+/*
+ * RR_test.cpp
+ *
+ * Created on: 18 Jul, 2014
+ * Author: shock
+ */
+
+#include "../src/RR.h"
+
+
+int
+main(int argc, char *argv[])
+{
+ ndn::RR rr;
+ rr.setRrdata("www2.ex.com");
+
+ ndn::Block block = rr.wireEncode();
+
+ ndn::RR rr2;
+ rr2.wireDecode(block);
+ cout<<rr.getRrdata()<<endl;
+
+ return 0;
+}//main