Added cache2 suite for binary objects.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/30f01f52 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/30f01f52 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/30f01f52 Branch: refs/heads/ignite-1.5-cache-get-opts Commit: 30f01f52a60d65c930812715ec8d8b371cfa93b5 Parents: 7eea46d Author: Alexey Goncharuk <[email protected]> Authored: Thu Nov 26 11:54:39 2015 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Thu Nov 26 11:54:39 2015 +0300 ---------------------------------------------------------------------- .../IgniteBinaryObjectsCacheTestSuite2.java | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/30f01f52/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite2.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite2.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite2.java new file mode 100644 index 0000000..e8064e7 --- /dev/null +++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsCacheTestSuite2.java @@ -0,0 +1,33 @@ +/* + * 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.testsuites; + +import junit.framework.TestSuite; +import org.apache.ignite.internal.portable.BinaryMarshaller; +import org.apache.ignite.testframework.config.GridTestProperties; + +/** + * + */ +public class IgniteBinaryObjectsCacheTestSuite2 { + public static TestSuite suite() throws Exception { + GridTestProperties.setProperty(GridTestProperties.MARSH_CLASS_NAME, BinaryMarshaller.class.getName()); + + return IgniteCacheTestSuite2.suite(); + } +}
