forked from fanruan/finekit
18 lines
362 B
18 lines
362 B
package com.fanruan.api.session; |
|
|
|
import com.fanruan.api.Prepare; |
|
import org.junit.Assert; |
|
import org.junit.Test; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-08-09 |
|
*/ |
|
public class SessionKitTest extends Prepare { |
|
|
|
@Test |
|
public void getSession() throws Exception { |
|
Assert.assertNull(SessionKit.getSession("abc")); |
|
} |
|
} |