• 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 package org.mockitousage.examples.use;
6 
7 public interface ArticleCalculator {
countArticles(String newspaper)8     int countArticles(String newspaper);
9 
countArticlesInPolish(String newspaper)10     int countArticlesInPolish(String newspaper);
11 
countNumberOfRelatedArticles(Article article)12     int countNumberOfRelatedArticles(Article article);
13 
countAllArticles(String... publications)14     int countAllArticles(String... publications);
15 }
16