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 public class Article {
      9 
     10     private int numberOfRelatedArticles;
     11 
     12     public int getNumberOfRelatedArticles() {
     13         return numberOfRelatedArticles;
     14     }
     15 
     16     public void setNumberOfRelatedArticles(int numberOfRelatedArticles) {
     17         this.numberOfRelatedArticles = numberOfRelatedArticles;
     18     }
     19 }
     20