blob: b52658488fe2fd345a5ca2593bbce6146a9da2cf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.examples;
import org.apache.ignite.examples.datagrid.CacheAffinityExample;
import org.apache.ignite.examples.datagrid.CacheApiExample;
import org.apache.ignite.examples.datagrid.CacheContinuousQueryExample;
import org.apache.ignite.examples.datagrid.CacheDataStreamerExample;
import org.apache.ignite.examples.datagrid.CacheEntryProcessorExample;
import org.apache.ignite.examples.datagrid.CachePutGetExample;
import org.apache.ignite.examples.datagrid.CacheQueryExample;
import org.apache.ignite.examples.datagrid.CacheTransactionExample;
import org.apache.ignite.examples.datagrid.starschema.CacheStarSchemaExample;
import org.apache.ignite.examples.datastructures.IgniteAtomicLongExample;
import org.apache.ignite.examples.datastructures.IgniteAtomicReferenceExample;
import org.apache.ignite.examples.datastructures.IgniteAtomicSequenceExample;
import org.apache.ignite.examples.datastructures.IgniteAtomicStampedExample;
import org.apache.ignite.examples.datastructures.IgniteCountDownLatchExample;
import org.apache.ignite.examples.datastructures.IgniteQueueExample;
import org.apache.ignite.examples.datastructures.IgniteSetExample;
import org.apache.ignite.testframework.junits.common.GridAbstractExamplesTest;
import org.junit.Test;
/**
* Cache examples self test.
*/
public class CacheExamplesSelfTest extends GridAbstractExamplesTest {
/**
* @throws Exception If failed.
*/
@Test
public void testCacheAffinityExample() throws Exception {
CacheAffinityExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheEntryProcessorExample() throws Exception {
CacheEntryProcessorExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheAtomicLongExample() throws Exception {
IgniteAtomicLongExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheAtomicReferenceExample() throws Exception {
IgniteAtomicReferenceExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheAtomicSequenceExample() throws Exception {
IgniteAtomicSequenceExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheAtomicStampedExample() throws Exception {
IgniteAtomicStampedExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheCountDownLatchExample() throws Exception {
IgniteCountDownLatchExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheQueueExample() throws Exception {
IgniteQueueExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheSetExample() throws Exception {
IgniteSetExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheQueryExample() throws Exception {
CacheQueryExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheApiExample() throws Exception {
CacheApiExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheTransactionExample() throws Exception {
CacheTransactionExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheDataStreamerExample() throws Exception {
CacheDataStreamerExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCachePutGetExample() throws Exception {
CachePutGetExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testSnowflakeSchemaExample() throws Exception {
CacheStarSchemaExample.main(EMPTY_ARGS);
}
/**
* @throws Exception If failed.
*/
@Test
public void testCacheContinuousQueryExample() throws Exception {
CacheContinuousQueryExample.main(EMPTY_ARGS);
}
}