Home | History | Annotate | Download | only in use
      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 import java.util.List;
      9 
     10 public class ArticleDatabase {
     11 
     12     public void updateNumberOfArticles(String newspaper, int articles) {
     13     }
     14 
     15     public void updateNumberOfPolishArticles(String newspaper, int polishArticles) {
     16     }
     17 
     18     public void updateNumberOfEnglishArticles(String newspaper, int i) {
     19     }
     20 
     21     public List<Article> getArticlesFor(String string) {
     22         return null;
     23     }
     24 
     25     public void save(Article article) {
     26     }
     27 }
     28