| 1234567891011121314151617 |
- package com.izouma.nineth.service;
- import com.izouma.nineth.ApplicationTests;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- public class IdentityAuthServiceTest extends ApplicationTests {
- @Autowired
- private IdentityAuthService identityAuthService;
- @Test
- public void validate() {
- identityAuthService.validate("熊竹", "15077886171", "321002199408304611");
- identityAuthService.validate("熊竹", "15077886171", "321002199408304614");
- }
- }
|