You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/05/04 17:32:04 UTC

svn commit: r1099487 - /subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c

Author: julianfoad
Date: Wed May  4 15:32:03 2011
New Revision: 1099487

URL: http://svn.apache.org/viewvc?rev=1099487&view=rev
Log:
Rename tests to better match their purpose.

* subversion/tests/libsvn_wc/tree-conflict-data-test.c
  (test_read_tree_conflict, test_write_tree_conflict): Rename to ...
  (test_deserialize_tree_conflict, test_serialize_tree_conflict): ... these.
  (test_funcs): Update the names and descriptions.

Modified:
    subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c

Modified: subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c?rev=1099487&r1=1099486&r2=1099487&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/tree-conflict-data-test.c Wed May  4 15:32:03 2011
@@ -51,7 +51,7 @@ fail(apr_pool_t *pool, const char *fmt, 
 }
 
 static svn_error_t *
-test_read_tree_conflict(apr_pool_t *pool)
+test_deserialize_tree_conflict(apr_pool_t *pool)
 {
   const svn_wc_conflict_description2_t *conflict;
   svn_wc_conflict_description2_t *exp_conflict;
@@ -83,7 +83,7 @@ test_read_tree_conflict(apr_pool_t *pool
 }
 
 static svn_error_t *
-test_write_tree_conflict(apr_pool_t *pool)
+test_serialize_tree_conflict(apr_pool_t *pool)
 {
   svn_wc_conflict_description2_t *conflict;
   const char *tree_conflict_data;
@@ -118,10 +118,10 @@ test_write_tree_conflict(apr_pool_t *poo
 struct svn_test_descriptor_t test_funcs[] =
   {
     SVN_TEST_NULL,
-    SVN_TEST_PASS2(test_read_tree_conflict,
-                   "read 1 tree conflict"),
-    SVN_TEST_PASS2(test_write_tree_conflict,
-                   "write 1 tree conflict"),
+    SVN_TEST_PASS2(test_deserialize_tree_conflict,
+                   "deserialize tree conflict"),
+    SVN_TEST_PASS2(test_serialize_tree_conflict,
+                   "serialize tree conflict"),
     SVN_TEST_NULL
   };