forked from sofastack/sofa-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add test for AbstractInterfaceConfig * add test for ConsumerConfig * remove system out * format code
- Loading branch information
Showing
15 changed files
with
911 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
core/api/src/test/java/com/alipay/sofa/rpc/std/AbstractMockitoTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* 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.alipay.sofa.rpc.std; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
/** | ||
* @author zhaowang | ||
* @version : AbstractMockitoTest.java, v 0.1 2022年01月25日 4:02 下午 zhaowang | ||
*/ | ||
@RunWith(MockitoJUnitRunner.Strict.class) | ||
public abstract class AbstractMockitoTest { | ||
|
||
} |
49 changes: 49 additions & 0 deletions
49
core/api/src/test/java/com/alipay/sofa/rpc/std/config/AbstractIdConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* 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.alipay.sofa.rpc.std.config; | ||
|
||
import com.alipay.sofa.rpc.common.utils.TestUtils; | ||
import com.alipay.sofa.rpc.config.AbstractIdConfig; | ||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
/** | ||
* @author zhaowang | ||
* @version : AbstractIdConfigTest.java, v 0.1 2022年01月25日 4:53 下午 zhaowang | ||
*/ | ||
public class AbstractIdConfigTest { | ||
|
||
@Test | ||
public void testDefaultValue() { | ||
TestConfig defaultConfig = new TestConfig(); | ||
assertTrue(defaultConfig.getId().startsWith("rpc-cfg-")); | ||
} | ||
|
||
@Test | ||
public void testSetMethod() { | ||
String id = TestUtils.randomString(); | ||
TestConfig testConfig = new TestConfig(); | ||
testConfig.setId(id); | ||
assertEquals(id, testConfig.getId()); | ||
} | ||
|
||
static class TestConfig extends AbstractIdConfig { | ||
} | ||
|
||
} |
Oops, something went wrong.