Skip to content

Commit

Permalink
optimize unit test for serialization hession2/jdk/kryo (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrick-zhu authored and beiwei30 committed May 3, 2018
1 parent 9f7306f commit db039c6
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
public abstract class AbstractSerializationTest {
static Random random = new Random();
Serialization serialization;
URL url = new URL("protocl", "1.1.1.1", 1234);
URL url = new URL("protocol", "1.1.1.1", 1234);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

// ================ Primitive Type ================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
public abstract class AbstractSerializationTest {
static Random random = new Random();
Serialization serialization;
URL url = new URL("protocl", "1.1.1.1", 1234);
URL url = new URL("protocol", "1.1.1.1", 1234);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

// ================ Primitive Type ================
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
* 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 com.alibaba.dubbo.common.serialize.serialization;

import com.alibaba.dubbo.common.serialize.nativejava.NativeJavaSerialization;

public class NativeJavaSerializationTest extends AbstractSerializationPersionFailTest {
{
serialization = new NativeJavaSerialization();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
public abstract class AbstractSerializationTest {
static Random random = new Random();
Serialization serialization;
URL url = new URL("protocl", "1.1.1.1", 1234);
URL url = new URL("protocol", "1.1.1.1", 1234);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

// ================ Primitive Type ================
Expand Down

0 comments on commit db039c6

Please sign in to comment.