blackConnect tests update git-svn-id: svn://10.0.0.236/trunk@99925 18797224-902f-48f8-a5cc-f745e15eee43
63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
The contents of this file are subject to the Mozilla Public
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
The Original Code is mozilla.org code.
|
|
|
|
The Initial Developer of the Original Code is Sun Microsystems,
|
|
Inc. Portions created by Sun are
|
|
Copyright (C) 1999 Sun Microsystems, Inc. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Client QA Team, St. Petersburg, Russia
|
|
*/
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
[scriptable, uuid(3f949800-9603-11d4-9d3a-00a024a8bb88)]
|
|
interface iX2JOUTServerTestComponent : nsISupports {
|
|
void setTestLocation(in string testLocation, in string logLocation);
|
|
void flush(in string name);
|
|
void testShort(out short i);
|
|
void testLong(out long i);
|
|
void testLonglong(out long long i);
|
|
void testByte(out octet i);
|
|
void testUShort(out unsigned short i);
|
|
void testULong(out unsigned long i);
|
|
void testULonglong(out unsigned long long i);
|
|
void testFloat(out float i);
|
|
void testDouble(out double i);
|
|
void testBoolean(out boolean i);
|
|
void testChar(out char i);
|
|
void testWChar(out wchar i);
|
|
void testString(out string i);
|
|
void testWString(out wstring i);
|
|
void testStringArray(in unsigned long count,
|
|
[array, size_is(count)] out string stringArray);
|
|
void testLongArray(in unsigned long count,
|
|
[array, size_is(count)] out long intArray);
|
|
void testCharArray(in unsigned long count,
|
|
[array, size_is(count)] out char charArray);
|
|
void testMixed(out boolean bBool, out char cChar, out octet nByte,
|
|
out short nShort, out unsigned short nUShort,
|
|
out long nLong, out unsigned long nULong,
|
|
out long long nHyper, out unsigned long long nUHyper,
|
|
out float fFloat, out double fDouble,
|
|
out string aString, in unsigned long count,
|
|
[array, size_is(count)] out long intArray);
|
|
void testObject(out iX2JOUTServerTestComponent obj);
|
|
void testObj();
|
|
// void testIID(out nsIIDRef aNameRef);
|
|
// void testCID(out nsCIDRef cid);
|
|
|
|
};
|