You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2005/12/13 08:43:02 UTC

svn commit: r356501 - in /webservices/axis2/trunk/c/test/unit/core/description: Makefile.am description_test.h test_op.c test_op.h test_optr.c test_optr.h

Author: damitha
Date: Mon Dec 12 23:42:52 2005
New Revision: 356501

URL: http://svn.apache.org/viewcvs?rev=356501&view=rev
Log:
renamed optr to op

Added:
    webservices/axis2/trunk/c/test/unit/core/description/test_op.c
      - copied, changed from r356498, webservices/axis2/trunk/c/test/unit/core/description/test_optr.c
    webservices/axis2/trunk/c/test/unit/core/description/test_op.h
      - copied unchanged from r356498, webservices/axis2/trunk/c/test/unit/core/description/test_optr.h
Removed:
    webservices/axis2/trunk/c/test/unit/core/description/test_optr.c
    webservices/axis2/trunk/c/test/unit/core/description/test_optr.h
Modified:
    webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/description/description_test.h

Modified: webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/Makefile.am?rev=356501&r1=356500&r2=356501&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/Makefile.am Mon Dec 12 23:42:52 2005
@@ -3,7 +3,7 @@
 prglib_LTLIBRARIES = libtest_description.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libtest_description_la_SOURCES = description_test.c \
-                                    test_optr.c
+                                    test_op.c
 
 include_HEADERS=$(top_builddir)/test/unit/core/description/*.h
 

Modified: webservices/axis2/trunk/c/test/unit/core/description/description_test.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/description_test.h?rev=356501&r1=356500&r2=356501&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/description_test.h (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/description_test.h Mon Dec 12 23:42:52 2005
@@ -2,7 +2,7 @@
 #define DESCRIPTION_TEST_H
 
 #include <CuTest.h>
-#include "test_optr.h"
+#include "test_op.h"
 
 CuSuite* axis2_descriptionGetSuite();
 

Copied: webservices/axis2/trunk/c/test/unit/core/description/test_op.c (from r356498, webservices/axis2/trunk/c/test/unit/core/description/test_optr.c)
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/test_op.c?p2=webservices/axis2/trunk/c/test/unit/core/description/test_op.c&p1=webservices/axis2/trunk/c/test/unit/core/description/test_optr.c&r1=356498&r2=356501&rev=356501&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/test_optr.c (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/test_op.c Mon Dec 12 23:42:52 2005
@@ -1,4 +1,4 @@
-#include "test_optr.h"
+#include "test_op.h"
 
 void add_handlers_to_flow(struct axis2_flow *flow, axis2_env_t **env);
 axis2_array_list_t *get_op_in_phases(axis2_env_t **env);
@@ -12,9 +12,9 @@
     axis2_allocator_t *allocator = axis2_allocator_init (NULL);
     axis2_env_t *env = axis2_env_create (allocator);
 
-    struct axis2_op *optr = axis2_op_create(&env);
+    struct axis2_op *op = axis2_op_create(&env);
     op_in_phases = get_op_in_phases(&env);  
-    actual = AXIS2_OPERATION_SET_REMAINING_PHASES_INFLOW(optr, &env, op_in_phases);
+    actual = AXIS2_OPERATION_SET_REMAINING_PHASES_INFLOW(op, &env, op_in_phases);
     
     CuAssertIntEquals(tc, expected, actual);
 }