diff --git a/test/triqs/operators/CMakeLists.txt b/test/triqs/operators/CMakeLists.txt
new file mode 100644
index 00000000..917a5baf
--- /dev/null
+++ b/test/triqs/operators/CMakeLists.txt
@@ -0,0 +1,2 @@
+all_tests()
+
diff --git a/test/triqs/operators/operator_test.cpp b/test/triqs/operators/operator_test.cpp
new file mode 100644
index 00000000..ba5b7bc1
--- /dev/null
+++ b/test/triqs/operators/operator_test.cpp
@@ -0,0 +1,100 @@
+/*******************************************************************************
+ *
+ * TRIQS: a Toolbox for Research in Interacting Quantum Systems
+ *
+ * Copyright (C) 2013 by I. Krivenko
+ *
+ * TRIQS is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ *
+ * TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * TRIQS. If not, see .
+ *
+ ******************************************************************************/
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+
+using namespace triqs::utility;
+
+int main(int argc, char **argv)
+{
+ // Operators without indices
+ auto op_with_no_indices = c() + c_dag() - n();
+ std::cout << "op_with_no_indices = " << op_with_no_indices << std::endl;
+
+ // Operators with many indices
+ auto op_with_many_indices = c(1,2,"a",true,-2) +
+ c_dag(3,15,"b",false,-5);
+ std::cout << "op_with_many_indices = " << op_with_many_indices << std::endl;
+
+ // Commutation relations
+ std::vector > C = {c(1), c(2), c(3)};
+ std::vector > Cd = {c_dag(1), c_dag(2), c_dag(3)};
+
+ std::cout << std::endl << "Anticommutators:" << std::endl;
+ for(auto const& cdi : Cd)
+ for(auto const& ci : C){
+ std::cout << "{" << cdi << ", " << ci << "} = " << cdi*ci + ci*cdi << std::endl;
+ }
+
+ std::cout << std::endl << "Commutators:" << std::endl;
+ for(auto const& cdi : Cd)
+ for(auto const& ci : C){
+ std::cout << "[" << cdi << ", " << ci << "] = " << cdi*ci - ci*cdi << std::endl;
+ }
+
+ // Algebra
+ auto x = c(0);
+ auto y = c_dag(1);
+
+ std::cout << std::endl << "Algebra:" << std::endl;
+ std::cout << "x = " << x << std::endl;
+ std::cout << "y = " << y << std::endl;
+
+ std::cout << "-x = " << -x << std::endl;
+ std::cout << "x + 2.0 = " << x + 2.0 << std::endl;
+ std::cout << "2.0 + x = " << 2.0 + x << std::endl;
+ std::cout << "x - 2.0 = " << x - 2.0 << std::endl;
+ std::cout << "2.0 - x = " << 2.0 - x << std::endl;
+ std::cout << "3.0*y = " << 3.0*y << std::endl;
+ std::cout << "y*3.0 = " << y*3.0 << std::endl;
+ std::cout << "x + y = " << x + y << std::endl;
+ std::cout << "x - y = " << x - y << std::endl;
+ std::cout << "(x + y)*(x - y) = " << (x + y)*(x - y) << std::endl;
+
+ // N^3
+ std::cout << std::endl << "N^3:" << std::endl;
+ auto N = n("up") + n("dn");
+ auto N3 = N*N*N;
+ std::cout << "N = " << N << std::endl;
+ std::cout << "N^3 = " << N3 << std::endl;
+
+ // Serialization
+ std::stringstream ss;
+ boost::archive::text_oarchive oa(ss);
+ oa & N3;
+
+ boost::archive::text_iarchive ia(ss);
+ many_body_operator new_N3;
+ ia & new_N3;
+
+ std::cout << "New N^3 = " << new_N3 << std::endl;
+
+ auto X = c_dag(1) * c_dag(2) * c(3) * c(4);
+ std::cout << "X = "<< X<