os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_endpointcreate_local.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
sl@0
    13
sl@0
    14
/**
sl@0
    15
 @file
sl@0
    16
 @test
sl@0
    17
 @internalComponent - Internal Symbian test code
sl@0
    18
*/
sl@0
    19
sl@0
    20
#include "egltest_endpointcreate.h"
sl@0
    21
sl@0
    22
/**
sl@0
    23
@SYMTestCaseID GRAPHICS-EGL-0406
sl@0
    24
sl@0
    25
@SYMTestPriority 1
sl@0
    26
sl@0
    27
@SYMPREQ 2670
sl@0
    28
sl@0
    29
@SYMREQ 13245
sl@0
    30
sl@0
    31
@SYMTestCaseDesc
sl@0
    32
Test the beahviour of eglCreateEndpointNOK and eglDestroyEndpoint with good and bad parameters.
sl@0
    33
sl@0
    34
@SYMTestActions
sl@0
    35
Create a number of surfaces
sl@0
    36
For each test case in a loop
sl@0
    37
    *   Send a commands with parameters to the windows server process test render stage to
sl@0
    38
        perform operations. These parameters include any error codes which should be
sl@0
    39
        generated.  The remote side checks the error code if any, and returns the result to the
sl@0
    40
        local side engine (test application), which sets the verdict of the test .
sl@0
    41
    *   Log any failures
sl@0
    42
If the procedure was successful release all the resources and check the heap for memory leaks.
sl@0
    43
No memory or handle leaks.
sl@0
    44
sl@0
    45
@SYMTestExpectedResults
sl@0
    46
If an error is generated, the value EGL_NO_ENDPOINT_NOK is returned.
sl@0
    47
If dpy is not the handle of a valid EGLDisplay object, the error EGL_BAD_DISPLAY is generated.
sl@0
    48
If type is not EGL_ENDPOINT_TYPE_CONSUMER_NOK, error EGL_BAD_PARAMETER is generated.
sl@0
    49
If source is not a pointer to a valid TSurfaceId, the error EGL_BAD_PARAMETER is generated.
sl@0
    50
If source_type is not EGL_TSURFACEID_NOK, the error EGL_BAD_PARAMETER is generated.
sl@0
    51
If attrib_list is not NULL or empty, the error EGL_BAD_PARAMETER is generated.
sl@0
    52
*/
sl@0
    53
sl@0
    54
static const TTestCase KCreatePositiveCases[] =
sl@0
    55
{
sl@0
    56
    {
sl@0
    57
        TESTIDS("541A, 542A"),
sl@0
    58
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy one endpoint"),
sl@0
    59
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
    60
        {
sl@0
    61
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
    62
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
    63
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
    64
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
    65
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
    66
        { EFinishedCase }
sl@0
    67
        },
sl@0
    68
    },
sl@0
    69
    {
sl@0
    70
        TESTIDS("541B, 542B"),
sl@0
    71
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy two endpoints, sequential"),
sl@0
    72
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
    73
        {
sl@0
    74
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
    75
        { ECreateSurfaceCase,   0,              EGL_SUCCESS },
sl@0
    76
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
    77
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
    78
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
    79
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
    80
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
    81
        { EFinishedCase }
sl@0
    82
        },
sl@0
    83
    },
sl@0
    84
    {
sl@0
    85
        TESTIDS("541C, 542C"),
sl@0
    86
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy in order"),
sl@0
    87
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
    88
        {
sl@0
    89
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
    90
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
    91
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 1, EStandardSurface },
sl@0
    92
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 2, EStandardSurface },
sl@0
    93
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 0, 0 },
sl@0
    94
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 1, 1 },
sl@0
    95
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 2, 2 },
sl@0
    96
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 0, 0 },
sl@0
    97
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 1, 1 },
sl@0
    98
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 2, 2 },
sl@0
    99
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   100
        { EFinishedCase }
sl@0
   101
        },
sl@0
   102
    },
sl@0
   103
    {
sl@0
   104
        TESTIDS("541D, 542D"),
sl@0
   105
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy reverse order"),
sl@0
   106
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   107
        {
sl@0
   108
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   109
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   110
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 1, EStandardSurface },
sl@0
   111
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 2, EStandardSurface },
sl@0
   112
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 0, 0 },
sl@0
   113
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 1, 1 },
sl@0
   114
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 2, 2 },
sl@0
   115
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 2, 2 },
sl@0
   116
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 1, 1 },
sl@0
   117
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 0, 0 },
sl@0
   118
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   119
        { EFinishedCase }
sl@0
   120
        },
sl@0
   121
    },
sl@0
   122
    {
sl@0
   123
        TESTIDS("541E, 542E"),
sl@0
   124
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy out of order"),
sl@0
   125
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   126
        {
sl@0
   127
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   128
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   129
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 1, EStandardSurface },
sl@0
   130
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 2, EStandardSurface },
sl@0
   131
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 0, 0 },
sl@0
   132
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 1, 1 },
sl@0
   133
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 2, 2 },
sl@0
   134
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 2, 2 },
sl@0
   135
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 0, 0 },
sl@0
   136
        { EDestroyEndpointCase, 0,              EGL_SUCCESS, 1, 1 },
sl@0
   137
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   138
        { EFinishedCase }
sl@0
   139
        },
sl@0
   140
    },
sl@0
   141
    {
sl@0
   142
        TESTIDS("541F"),
sl@0
   143
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglTerminate with Valid Parameters: Create one endpoint then terminate EGL"),
sl@0
   144
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   145
        {
sl@0
   146
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   147
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   148
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
   149
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   150
        { EFinishedCase }
sl@0
   151
        },
sl@0
   152
    },
sl@0
   153
    {
sl@0
   154
        TESTIDS("541G"),
sl@0
   155
        CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglTerminate with Valid Parameters: Create three endpoints then terminate EGL"),
sl@0
   156
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   157
        {
sl@0
   158
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   159
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   160
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 1, EStandardSurface },
sl@0
   161
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 2, EStandardSurface },
sl@0
   162
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 0, 0 },
sl@0
   163
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 1, 1 },
sl@0
   164
        { ECreateEndpointCase,  0,              EGL_SUCCESS, 2, 2 },
sl@0
   165
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   166
        { EFinishedCase }
sl@0
   167
        },
sl@0
   168
    },
sl@0
   169
};
sl@0
   170
sl@0
   171
static const TTestCase KCreateBadParameterCases[] =
sl@0
   172
{
sl@0
   173
    {
sl@0
   174
        TESTIDS("549A"),
sl@0
   175
        CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad display and various other bad parameters"),
sl@0
   176
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   177
        {
sl@0
   178
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   179
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   180
        { ECreateEndpointCase,  EUseBadDisplay, EGL_BAD_DISPLAY },
sl@0
   181
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadEndpointType, EGL_BAD_DISPLAY },
sl@0
   182
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadSourceType, EGL_BAD_DISPLAY },
sl@0
   183
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadSourceType | EUseBadEndpointType, EGL_BAD_DISPLAY },
sl@0
   184
        { ECreateEndpointCase,  EUseBadEndpointType, EGL_BAD_PARAMETER },
sl@0
   185
        { ECreateEndpointCase,  EUseBadSourceType, EGL_BAD_PARAMETER },
sl@0
   186
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   187
        { EFinishedCase }
sl@0
   188
        },
sl@0
   189
    },
sl@0
   190
    {
sl@0
   191
        TESTIDS("549B"),
sl@0
   192
        CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad attributes"),
sl@0
   193
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   194
        {
sl@0
   195
        { EInitializeCase,      0,                EGL_SUCCESS },
sl@0
   196
        { ECreateSurfaceCase,   0,                EGL_SUCCESS, 0, EBadAttribSurface },
sl@0
   197
        { ECreateEndpointCase,  EUseBadDisplay,   EGL_BAD_DISPLAY },
sl@0
   198
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadEndpointType, EGL_BAD_DISPLAY },
sl@0
   199
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadSourceType, EGL_BAD_DISPLAY },
sl@0
   200
        { ECreateEndpointCase,  EUseBadDisplay | EUseBadSourceType | EUseBadEndpointType, EGL_BAD_DISPLAY },
sl@0
   201
        // Now, try with correct parameters aside from the attribute set - this should give us bad parameter.
sl@0
   202
        { ECreateEndpointCase,  EExpectError, EGL_BAD_PARAMETER },
sl@0
   203
        { ETerminateCase,       0,                EGL_SUCCESS },
sl@0
   204
        { EFinishedCase }
sl@0
   205
        },
sl@0
   206
    },
sl@0
   207
    {
sl@0
   208
        TESTIDS("549C"),
sl@0
   209
        CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad surfaceid"),
sl@0
   210
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   211
        {
sl@0
   212
            { EInitializeCase,      0,                EGL_SUCCESS },
sl@0
   213
            { ECreateSurfaceCase,   0,                EGL_SUCCESS },
sl@0
   214
            // Check that bad display takes precedence over bad surface!
sl@0
   215
            { ECreateEndpointCase,  EUseBadDisplay | EUseBadSurfaceId, EGL_BAD_DISPLAY },
sl@0
   216
            { ECreateEndpointCase,  EUseBadSurfaceId, EGL_BAD_PARAMETER },
sl@0
   217
            // Now create an endpoint to see that nothing got messed up.
sl@0
   218
            { ECreateEndpointCase,  0,                EGL_SUCCESS },
sl@0
   219
            { EDestroyEndpointCase, 0,                EGL_SUCCESS },
sl@0
   220
            { ETerminateCase,       0,                EGL_SUCCESS },
sl@0
   221
            { EFinishedCase }
sl@0
   222
        }
sl@0
   223
    },
sl@0
   224
};
sl@0
   225
sl@0
   226
// Note that some cases of "destroy" are tested as part of AcquireImage tests - they are
sl@0
   227
// borderline between the two functions, e.g. destroy when an image is acquired.
sl@0
   228
// Also, destroyendpoint is tested in the streaming tests, for the case where endstreaming
sl@0
   229
// is not performed before the destroyendpoint.
sl@0
   230
static const TTestCase KCreateNegativeCases[] =
sl@0
   231
{
sl@0
   232
    {
sl@0
   233
        TESTIDS("549D"),
sl@0
   234
        CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: check that creating an endpoint twice gives correct error"),
sl@0
   235
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   236
        {
sl@0
   237
        { EInitializeCase,      0,                EGL_SUCCESS },
sl@0
   238
        { ECreateSurfaceCase,   0,                EGL_SUCCESS, 0, EStandardSurface },
sl@0
   239
        { ECreateEndpointCase,  0,                EGL_SUCCESS },
sl@0
   240
        { ECreateEndpointCase,  EExpectError,     EGL_BAD_PARAMETER },
sl@0
   241
        { EDestroyEndpointCase, 0,                EGL_SUCCESS },
sl@0
   242
        { ETerminateCase,       0,                EGL_SUCCESS },
sl@0
   243
        { EFinishedCase }
sl@0
   244
        },
sl@0
   245
    },
sl@0
   246
};
sl@0
   247
sl@0
   248
static const TTestCase KDestroyBadParameterCases[] =
sl@0
   249
{
sl@0
   250
    {
sl@0
   251
        TESTIDS("550A"),
sl@0
   252
        CASETITLE("Functional: Negative: eglDestroyEndpointNOK with Bad parameters: check various trivial bad parameters"),
sl@0
   253
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   254
        {
sl@0
   255
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   256
        { EDestroyEndpointCase, EUseBadDisplay, EGL_BAD_DISPLAY },
sl@0
   257
        { EDestroyEndpointCase, EUseBadDisplay, EGL_BAD_DISPLAY },
sl@0
   258
        // Now use bad endpoint WITH bad display - should give bad display.
sl@0
   259
        { EDestroyEndpointCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY },
sl@0
   260
        // And bad endpoint on it's own, should give bad-endpoint.
sl@0
   261
        { EDestroyEndpointCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK },
sl@0
   262
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   263
        { EFinishedCase }
sl@0
   264
        },
sl@0
   265
    },
sl@0
   266
};
sl@0
   267
sl@0
   268
static const TTestCase KDestroyNegativeCases[] =
sl@0
   269
{
sl@0
   270
    {
sl@0
   271
        TESTIDS("550B"),
sl@0
   272
        CASETITLE("Functional: Negative: eglDestroyEndpointNOK with Bad parameters: check that destroying the endpoint twice gives correct error"),
sl@0
   273
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   274
        {
sl@0
   275
        { EInitializeCase,      0,                EGL_SUCCESS },
sl@0
   276
        { ECreateSurfaceCase,   0,                EGL_SUCCESS, 0, EStandardSurface },
sl@0
   277
        { ECreateEndpointCase,  0,                EGL_SUCCESS },
sl@0
   278
        { EDestroyEndpointCase, 0,                EGL_SUCCESS },
sl@0
   279
        { EDestroyEndpointCase, EExpectError,     EGL_BAD_ENDPOINT_NOK },
sl@0
   280
        { ETerminateCase,       0,                EGL_SUCCESS },
sl@0
   281
        { EFinishedCase }
sl@0
   282
        },
sl@0
   283
    },
sl@0
   284
};
sl@0
   285
sl@0
   286
sl@0
   287
static const TTestCase KDestroyEndpointClosesAllReferences[] =
sl@0
   288
{
sl@0
   289
    {
sl@0
   290
        TESTIDS("564A"),
sl@0
   291
        CASETITLE("Functional: General: eglDestroyEndpoint closes all references: try to begin streaming after destroy endpoint"),
sl@0
   292
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   293
        {
sl@0
   294
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   295
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   296
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
   297
        { EDrawContentCase,     0,              EGL_SUCCESS },
sl@0
   298
        { EContentUpdateCase,   0,              EGL_SUCCESS },
sl@0
   299
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
   300
        { EBeginStreamingCase,  EExpectError,   EGL_BAD_ENDPOINT_NOK },
sl@0
   301
        { EAcquireImageCase,    EExpectError,   EGL_BAD_ENDPOINT_NOK },
sl@0
   302
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   303
        { EFinishedCase }
sl@0
   304
        },
sl@0
   305
    },
sl@0
   306
    {
sl@0
   307
        TESTIDS("564B"),
sl@0
   308
        CASETITLE("Functional: General: eglDestroyEndpoint closes all references: try to create vg image from egl image after destroy endpoint"),
sl@0
   309
        SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
sl@0
   310
        {
sl@0
   311
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   312
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   313
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
   314
        { EDrawContentCase,     0,              EGL_SUCCESS },
sl@0
   315
        { EContentUpdateCase,   0,              EGL_SUCCESS },
sl@0
   316
        { EBeginStreamingCase,  0,              EGL_SUCCESS },
sl@0
   317
        { EAcquireImageCase,    0,              EGL_SUCCESS },
sl@0
   318
        { ECompareImageCase,    0,              EGL_SUCCESS },
sl@0
   319
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
   320
        { ECreateVgImageCase,   EExpectError,   EFalse },
sl@0
   321
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   322
        { EFinishedCase }
sl@0
   323
        },
sl@0
   324
    },
sl@0
   325
};
sl@0
   326
sl@0
   327
static const TTestCases KTestCases[] =
sl@0
   328
{
sl@0
   329
        TestCase(KCreatePositiveCases),
sl@0
   330
        TestCase(KCreateBadParameterCases),
sl@0
   331
        TestCase(KCreateNegativeCases),
sl@0
   332
        // Note: No positive tests for destroy - that is already done as part of
sl@0
   333
        // the positive create tests.
sl@0
   334
        TestCase(KDestroyBadParameterCases),
sl@0
   335
        TestCase(KDestroyNegativeCases),
sl@0
   336
        TestCase(KDestroyEndpointClosesAllReferences),
sl@0
   337
};
sl@0
   338
sl@0
   339
const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]);
sl@0
   340
sl@0
   341
CEglTest_LocalTestStep_EndpointCreate::CEglTest_LocalTestStep_EndpointCreate():
sl@0
   342
    CEgltest_Local_Engine(KTestCases, KNumberTestCases)
sl@0
   343
    {
sl@0
   344
    }