-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathMainSuite1b.java
More file actions
99 lines (93 loc) · 5.79 KB
/
MainSuite1b.java
File metadata and controls
99 lines (93 loc) · 5.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.dotcms;
import com.dotcms.graphql.DotGraphQLHttpServletTest;
import com.dotcms.junit.MainBaseSuite;
import com.dotcms.storage.Chainable404StorageCacheTest;
import com.dotcms.storage.FileStorageAPITest;
import com.dotmarketing.common.db.DotConnectTest;
import com.dotmarketing.quartz.QuartzUtilsTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;
/* grep -l -r "@Test" dotCMS/src/integration-test */
/* ./gradlew integrationTest -Dtest.single=com.dotcms.MainSuite */
@RunWith(MainBaseSuite.class)
@SuiteClasses({
com.dotcms.keyvalue.busines.KeyValueAPIImplTest.class,
com.dotcms.keyvalue.business.KeyValueAPITest.class,
com.dotcms.tika.TikaUtilsTest.class,
com.dotcms.visitor.filter.logger.VisitorLoggerTest.class,
com.dotcms.visitor.filter.characteristics.VisitorCharacterTest.class,
com.dotcms.graphql.business.GraphqlAPITest.class,
com.dotcms.contenttype.test.ContentTypeTest.class,
com.dotcms.contenttype.test.DeleteFieldJobTest.class,
com.dotcms.content.elasticsearch.business.ESSiteSearchAPITest.class,
com.dotcms.content.elasticsearch.business.ESMappingAPITest.class,
com.dotcms.content.elasticsearch.business.ContentletIndexAPIImplTest.class,
com.dotcms.contenttype.test.ContentTypeAPIImplTest.class,
com.dotcms.contenttype.test.ContentTypeBuilderTest.class,
com.dotcms.contenttype.test.ContentTypeFactoryImplTest.class,
com.dotcms.contenttype.test.ContentTypeImportExportTest.class,
com.dotcms.contenttype.test.FieldFactoryImplTest.class,
com.dotcms.contenttype.test.JsonContentTypeTransformerTest.class,
com.dotcms.contenttype.test.FieldBuilderTest.class,
com.dotcms.contenttype.test.KeyValueFieldUtilTest.class,
com.dotcms.contenttype.test.ContentTypeResourceTest.class,
com.dotcms.contenttype.business.RelationshipAPITest.class,
com.dotcms.contenttype.business.FieldAPITest.class,
com.dotcms.contenttype.business.RelationshipFactoryImplTest.class,
com.dotcms.contenttype.model.field.layout.FieldLayoutColumnSerializerTest.class,
com.dotcms.contenttype.model.field.layout.FieldLayoutSerializerTest.class,
com.dotcms.contenttype.model.field.layout.FieldLayoutRowSerializerTest.class,
com.dotcms.contenttype.model.field.layout.FieldLayoutTest.class,
com.dotcms.workflow.helper.TestSystemActionMappingsHandlerMerger.class,
com.dotcms.concurrent.lock.DotKeyLockManagerTest.class,
com.dotcms.rendering.velocity.VelocityMacroCacheTest.class,
com.dotcms.rendering.velocity.VelocityUtilTest.class,
com.dotcms.rendering.velocity.viewtools.navigation.NavToolTest.class,
com.dotcms.rendering.velocity.viewtools.navigation.NavToolCacheTest.class,
com.dotcms.rendering.velocity.viewtools.content.ContentMapTest.class,
com.dotcms.rendering.velocity.viewtools.content.ContentToolTest.class,
com.dotcms.rendering.velocity.viewtools.WorkflowToolTest.class,
com.dotcms.rendering.velocity.viewtools.WebsiteToolTest.class,
com.dotcms.rendering.velocity.viewtools.LanguageWebAPITest.class,
com.dotcms.rendering.velocity.viewtools.ContainerWebAPIIntegrationTest.class,
com.dotcms.rendering.velocity.services.VelocityResourceKeyTest.class,
com.dotcms.rendering.velocity.services.HTMLPageAssetRenderedTest.class,
com.dotcms.uuid.shorty.ShortyIdApiTest.class,
DotGraphQLHttpServletTest.class,
com.dotcms.graphql.datafetcher.page.VanityURLFetcherTest.class,
com.dotcms.graphql.datafetcher.page.RunningExperimentFetcherTest.class,
com.dotcms.graphql.datafetcher.CategoryFieldDataFetcherTest.class,
com.dotcms.graphql.datafetcher.FolderCollectionDataFetcherTest.class,
com.dotcms.rest.TagResourceIntegrationTest.class,
com.dotcms.rest.api.v2.tags.TagResourceIntegrationTest.class,
com.dotcms.rest.MapToContentletPopulatorTest.class,
com.dotcms.rest.WebResourceIntegrationTest.class,
com.dotcms.rest.api.v1.company.CompanyResourceIntegrationTest.class,
com.dotcms.rest.api.v1.configuration.ConfigurationResourceTest.class,
com.dotcms.rest.api.v1.page.NavResourceTest.class,
com.dotcms.rest.api.v1.page.PageResourceTest.class,
com.dotcms.rest.api.v1.temp.TempFileResourceTest.class,
com.dotcms.rest.api.v1.content.ContentVersionResourceIntegrationTest.class,
com.dotcms.rest.api.v1.content.ContentResourceIntegrationTest.class,
com.dotcms.rest.api.v1.container.ContainerResourceIntegrationTest.class,
com.dotcms.rest.api.v1.container.ContainerResourceHostResolutionIT.class,
com.dotcms.rest.api.v1.theme.ThemeResourceIntegrationTest.class,
com.dotcms.rest.api.v1.vtl.VTLResourceIntegrationTest.class,
com.dotcms.rest.api.v1.contenttype.ContentTypeResourceIssue15124Test.class,
com.dotcms.rest.api.v1.contenttype.FieldResourceTest.class,
com.dotcms.rest.api.v1.contenttype.ContentTypeResourceTest.class,
Chainable404StorageCacheTest.class,
FileStorageAPITest.class,
com.dotcms.analytics.metrics.QueryParameterValuesTransformerTest.class,
QuartzUtilsTest.class,
DotConnectTest.class,
com.dotcms.contenttype.model.field.layout.FieldUtilTest.class,
com.dotmarketing.portlets.contentlet.business.HostAPITest.class,
com.dotcms.content.elasticsearch.business.IndiciesFactoryTest.class,
com.dotcms.content.elasticsearch.business.ESIndexSpeedTest.class,
com.dotcms.content.elasticsearch.business.ES6UpgradeTest.class,
com.dotcms.content.elasticsearch.business.ESContentFactoryImplTest.class,
com.dotcms.graphql.datafetcher.page.ContentMapDataFetcherTest.class
})
public class MainSuite1b {
}