remove annot class in favor of SeqSpan
[mussa.git] / alg / test / test_annotation_color.cpp
index 7d2a885f8594e027c2aaf1e501f9f693f3a2afcd..aa06060c37deb49b2bb2356d035b3a7679297e27 100644 (file)
@@ -26,6 +26,8 @@ BOOST_AUTO_TEST_CASE( simple_annot_colors )
   BOOST_CHECK_EQUAL( ac.lookup("bleem", "foo"), black );
   BOOST_CHECK_EQUAL( ac.lookup("venchent", "a"), white );
 
+  /*
+  // Removed as we're phasing out the annot and annotation colors classes
   annot a;
   a.begin = 30;
   a.end = 45;
@@ -37,7 +39,8 @@ BOOST_AUTO_TEST_CASE( simple_annot_colors )
   BOOST_CHECK_EQUAL( ac.lookup(a), black );
   a.type = "venchent";
   BOOST_CHECK_EQUAL( ac.lookup(a), white );
-
+  */
+  
   ac.clear();
   BOOST_CHECK_EQUAL( ac.lookup("bleem", "a"), black);
 }