Test coverage for vnccollab.common.testing

vnccollab/      covered 95% (12 of 287 uncovered)
    common/      covered 95% (12 of 287 uncovered)
        testing.py      covered 100% (0 of 29 uncovered)

    1: from plone.app.testing import PloneSandboxLayer
    1: from plone.app.testing import applyProfile
    1: from plone.app.testing import PLONE_FIXTURE
    1: from plone.app.testing import IntegrationTesting
    1: from plone.app.testing import FunctionalTesting
       
    1: from plone.testing import z2
       
    1: from zope.configuration import xmlconfig
       
       
    2: class VnccollabcommonLayer(PloneSandboxLayer):
       
    1:     defaultBases = (PLONE_FIXTURE,)
       
    1:     def setUpZope(self, app, configurationContext):
               # Load ZCML
    1:         import collective.js.jqueryui
    1:         xmlconfig.file(
    1:             'configure.zcml',
    1:             collective.js.jqueryui,
    1:             context=configurationContext
               )
    1:         import vnccollab.common
    1:         xmlconfig.file(
    1:             'configure.zcml',
    1:             vnccollab.common,
    1:             context=configurationContext
               )
       
    1:     def setUpPloneSite(self, portal):
    1:         applyProfile(portal, 'vnccollab.common:default')
       
    1: VNCCOLLAB_COMMON_FIXTURE = VnccollabcommonLayer()
    1: VNCCOLLAB_COMMON_INTEGRATION_TESTING = IntegrationTesting(
    1:     bases=(VNCCOLLAB_COMMON_FIXTURE,),
    1:     name="VnccollabcommonLayer:Integration"
       )
    1: VNCCOLLAB_COMMON_FUNCTIONAL_TESTING = FunctionalTesting(
    1:     bases=(VNCCOLLAB_COMMON_FIXTURE, z2.ZSERVER_FIXTURE),
    1:     name="VnccollabcommonLayer:Functional"
       )