Package ru.org.linux.spring

Source Code of ru.org.linux.spring.PrepareServiceTest

/*
* Copyright 1998-2012 Linux.org.ru
*    Licensed 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 ru.org.linux.spring;

import com.google.common.collect.ImmutableList;
import org.junit.Test;
import ru.org.linux.group.GroupDao;
import ru.org.linux.poll.PollDao;
import ru.org.linux.section.SectionDao;
import ru.org.linux.section.SectionDaoImpl;
import ru.org.linux.topic.Topic;
import ru.org.linux.spring.dao.*;
import ru.org.linux.topic.TopicDao;
import ru.org.linux.user.UserDao;

import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class PrepareServiceTest {

  /**
   * TODO дописать, написать общий тестовый клас со слепком данных для тестирования, как то
   * TODO пару тройку ResultSet для разных классов и сами классы
   */
  @Test
  public void prepareMessageTest() {
    ImmutableList<String> tags = ImmutableList.of("one", "two");
    Topic message = mock(Topic.class);

    PollDao pollDao = mock(PollDao.class);
    GroupDao groupDao = mock(GroupDao.class);
    UserDao userDao = mock(UserDao.class);
    SectionDao sectionDao = mock(SectionDaoImpl.class);
    DeleteInfoDao deleteInfoDao = mock(DeleteInfoDao.class);
    TopicDao messageDao = mock(TopicDao.class);
    UserAgentDao userAgentDao = mock(UserAgentDao.class);

    when(message.getGroupId()).thenReturn(13); // group id 13

  }

}
TOP

Related Classes of ru.org.linux.spring.PrepareServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.