summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/test
diff options
context:
space:
mode:
authorJean-Tiare LE BIGOT <admin@jtlebi.fr>2012-08-11 13:22:07 -0400
committerDavid Tardon <dtardon@redhat.com>2012-08-12 19:29:16 +0200
commitfc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch)
tree8026ad5e9a05948f882f790675c0813c72cd42bf /udkapi/com/sun/star/test
parent602f956d3231a093c9853d88fe5d5de2465f7112 (diff)
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'udkapi/com/sun/star/test')
-rw-r--r--udkapi/com/sun/star/test/TestEvent.idl5
-rw-r--r--udkapi/com/sun/star/test/TestFactory.idl3
-rw-r--r--udkapi/com/sun/star/test/XSimpleTest.idl9
-rw-r--r--udkapi/com/sun/star/test/XTest.idl8
-rw-r--r--udkapi/com/sun/star/test/XTestListener.idl6
-rw-r--r--udkapi/com/sun/star/test/bridge/XBridgeTest.idl1
-rw-r--r--udkapi/com/sun/star/test/performance/XPerformanceTest.idl1
7 files changed, 0 insertions, 33 deletions
diff --git a/udkapi/com/sun/star/test/TestEvent.idl b/udkapi/com/sun/star/test/TestEvent.idl
index 3424138d3c0c..35bd760e0c5c 100644
--- a/udkapi/com/sun/star/test/TestEvent.idl
+++ b/udkapi/com/sun/star/test/TestEvent.idl
@@ -22,30 +22,25 @@
#include <com/sun/star/lang/EventObject.idl>
-//=============================================================================
module com { module sun { module star { module test {
-//=============================================================================
/** This event gets delivered whenever a test event (an error, an exception,
a warning) takes place.
@deprecated
*/
published struct TestEvent: com::sun::star::lang::EventObject
{
- //-------------------------------------------------------------------------
/** contains the error/warning message
*/
string Message;
- //-------------------------------------------------------------------------
/** contains the exception notified by the <type>XTestListener</type>
method notifyException. This value is not valid for other events.
*/
any Exception;
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/test/TestFactory.idl b/udkapi/com/sun/star/test/TestFactory.idl
index 762148c7136b..73f9f569f9c9 100644
--- a/udkapi/com/sun/star/test/TestFactory.idl
+++ b/udkapi/com/sun/star/test/TestFactory.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/lang/MultiServiceFactory.idl>
-//=============================================================================
module com { module sun { module star { module test {
-//=============================================================================
/** describes a factory of services with interfaces for testing purposes.
<p>It create instances that support the interface
@@ -53,7 +51,6 @@ published service TestFactory
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/test/XSimpleTest.idl b/udkapi/com/sun/star/test/XSimpleTest.idl
index 1d4bb325621b..47aa47a9ce53 100644
--- a/udkapi/com/sun/star/test/XSimpleTest.idl
+++ b/udkapi/com/sun/star/test/XSimpleTest.idl
@@ -23,17 +23,14 @@
#include <com/sun/star/lang/IllegalArgumentException.idl>
-//=============================================================================
module com { module sun { module star { module test {
-//=============================================================================
/**
A simple interface to test a service or interface implementation.
*/
published interface XSimpleTest: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/**
Test the object TestObject against the test specified with TestName. This test
does not change the semantic state of the object, so it can be called on a existing
@@ -52,7 +49,6 @@ published interface XSimpleTest: com::sun::star::uno::XInterface
[in] com::sun::star::uno::XInterface TestObject )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/**
Test the object TestObject against the test specified with TestName. This test
changes the state of the object. The object may be useless afterwards.
@@ -80,28 +76,23 @@ published interface XSimpleTest: com::sun::star::uno::XInterface
[in] long hTestHandle )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/**States if one of the last test has failed. This is cumulative.
@return true if all test have been passed successfully. false if an error has occurred.
*/
boolean testPassed();
- //-------------------------------------------------------------------------
// DOCUMENTATION MISSING FOR XSimpleTest::getErrors
sequence<string> getErrors();
- //-------------------------------------------------------------------------
// DOCUMENTATION MISSING FOR XSimpleTest::getErrorExceptions
sequence<any> getErrorExceptions();
- //-------------------------------------------------------------------------
// DOCUMENTATION MISSING FOR XSimpleTest::getWarnings
sequence<string> getWarnings();
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/test/XTest.idl b/udkapi/com/sun/star/test/XTest.idl
index ebb95abe00b1..68d0ae0d84a9 100644
--- a/udkapi/com/sun/star/test/XTest.idl
+++ b/udkapi/com/sun/star/test/XTest.idl
@@ -24,17 +24,14 @@
#include <com/sun/star/test/XTestListener.idl>
-//=============================================================================
module com { module sun { module star { module test {
-//=============================================================================
/**
A simple interface to test a service or interface implementation.
*/
published interface XTest: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/**
Test the object TestObject against the test specified with TestName. This test
does not change the semantic state of the object, so it can be called on a existing
@@ -53,7 +50,6 @@ published interface XTest: com::sun::star::uno::XInterface
[in] com::sun::star::uno::XInterface TestObject )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/**
Test the object TestObject against the test specified with TestName.
This test changes the state of the object. The object may be useless
@@ -82,7 +78,6 @@ published interface XTest: com::sun::star::uno::XInterface
[in] long hTestHandle )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/**
Test the object TestObject against the test specified with TestName using
several threads. That does NOT mean that testMultiThread should implement
@@ -117,13 +112,11 @@ published interface XTest: com::sun::star::uno::XInterface
[in] long hTestHandle )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** registers an event listener, which will be called for reporting
errors/exceptions and warnings and for protocol purpuses.
*/
void addTestListener( [in] XTestListener xListener );
- //-------------------------------------------------------------------------
/** unregisters an event listener which was registered with
<member>XTest::addTestListener()</member>.
@@ -132,7 +125,6 @@ published interface XTest: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/test/XTestListener.idl b/udkapi/com/sun/star/test/XTestListener.idl
index f8d49d4110b5..77d1575dcb5a 100644
--- a/udkapi/com/sun/star/test/XTestListener.idl
+++ b/udkapi/com/sun/star/test/XTestListener.idl
@@ -23,16 +23,13 @@
#include <com/sun/star/test/TestEvent.idl>
-//=============================================================================
module com { module sun { module star { module test {
-//=============================================================================
/** is used to handle errors/exceptions and warnings during tests.
*/
published interface XTestListener: com::sun::star::lang::XEventListener
{
- //-------------------------------------------------------------------------
/** gets called when an error occurs while performing an test.
If the error results from an exception, the exception
can be found in the Exception member of the TestEvent
@@ -43,7 +40,6 @@ published interface XTestListener: com::sun::star::lang::XEventListener
*/
void notifyError( [in] com::sun::star::test::TestEvent evt );
- //-------------------------------------------------------------------------
/** gets called when an warning occurs while performing an test.
@param evt
@@ -52,7 +48,6 @@ published interface XTestListener: com::sun::star::lang::XEventListener
*/
void notifyWarning( [in] com::sun::star::test::TestEvent evt );
- //-------------------------------------------------------------------------
/** can be called by the broadcaster to inform the listener about
the progress of the test. The listener can use this information
for example to write it into a test protocol file.
@@ -65,7 +60,6 @@ published interface XTestListener: com::sun::star::lang::XEventListener
};
-//=============================================================================
}; }; }; };
diff --git a/udkapi/com/sun/star/test/bridge/XBridgeTest.idl b/udkapi/com/sun/star/test/bridge/XBridgeTest.idl
index 5805e63ef73d..99110f95a3b8 100644
--- a/udkapi/com/sun/star/test/bridge/XBridgeTest.idl
+++ b/udkapi/com/sun/star/test/bridge/XBridgeTest.idl
@@ -282,7 +282,6 @@ published interface XBridgeTest2 : XBridgeTest
};
-//=============================================================================
};
};
diff --git a/udkapi/com/sun/star/test/performance/XPerformanceTest.idl b/udkapi/com/sun/star/test/performance/XPerformanceTest.idl
index a3eb2e79339a..a5ea7040edb3 100644
--- a/udkapi/com/sun/star/test/performance/XPerformanceTest.idl
+++ b/udkapi/com/sun/star/test/performance/XPerformanceTest.idl
@@ -118,7 +118,6 @@ published interface XPerformanceTest : com::sun::star::uno::XInterface
void raiseRuntimeException();
};
-//=============================================================================
};
};