• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2007 Mockito contributors
3  * This program is made available under the terms of the MIT License.
4  */
5 
6 package org.mockitousage.examples.use;
7 
8 public interface ArticleCalculator {
countArticles(String newspaper)9     int countArticles(String newspaper);
countArticlesInPolish(String newspaper)10     int countArticlesInPolish(String newspaper);
countNumberOfRelatedArticles(Article article)11     int countNumberOfRelatedArticles(Article article);
countAllArticles(String .... publications)12     int countAllArticles(String ... publications);
13 }
14