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 { 9 int countArticles(String newspaper); 10 int countArticlesInPolish(String newspaper); 11 int countNumberOfRelatedArticles(Article article); 12 int countAllArticles(String ... publications); 13 } 14