• junit报错


    java.lang.RuntimeException: iwap 环境还没有初始化,请先调用IWapContext.init()。
    at com.nantian.ofpiwap.IWapContext.checkInit(IWapContext.java:402)
    at com.nantian.ofpiwap.IWapContext.getContext(IWapContext.java:348)
    at demo.TestHelloWorld.testGreeting(TestHelloWorld.java:14)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at junit.framework.TestCase.runTest(TestCase.java:154)
    at junit.framework.TestCase.runBare(TestCase.java:127)
    at junit.framework.TestResult$1.protect(TestResult.java:106)
    at junit.framework.TestResult.runProtected(TestResult.java:124)
    at junit.framework.TestResult.run(TestResult.java:109)
    at junit.framework.TestCase.run(TestCase.java:118)
    at junit.framework.TestSuite.runTest(TestSuite.java:208)
    at junit.framework.TestSuite.run(TestSuite.java:203)
    at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)

    解决方法:

    package demo;

    import org.springframework.context.ApplicationContext;
    import com.nantian.ofpiwap.IWapContext;
    import junit.framework.TestCase;
    /**
    * 测试greeting函数
    */
    public class TestHelloWorld extends TestCase {
    /**
    * 测试greeting函数
    */
    public void testGreeting() {
    IWapContext.init();
    ApplicationContext context = IWapContext.getContext();
    HelloWorld helloWorld = (HelloWorld) context.getBean("HelloWorld");
    String accountName = helloWorld.greeting("admin");
    assertEquals("管理员", accountName);
    }
    }

  • 相关阅读:
    Sentinel Dashboard(基于1.8.1)流控规则持久化到Nacos——涉及部分Sentinel Dashboard源码改造
    测试平台MeterSphere源码入门
    Java:利用BigDecimal类巧妙处理Double类型精度丢失
    SpringBoot整合任务调度框架Quartz及持久化配置
    任务调度框架Quartz快速入门!
    Kafka超详细学习笔记【概念理解,安装配置】
    Windows环境下Zookeeper安装配置
    SpringData JPA利用Specification多条件查询
    SpringBoot事件监听机制及观察者模式/发布订阅模式
    详解Java中的IO输入输出流!
  • 原文地址:https://www.cnblogs.com/curedfisher/p/11460400.html
Copyright © 2020-2023  润新知