KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > antmod > scm > impl > CvsSystemImplTest


1 package org.antmod.scm.impl;
2
3 import junit.framework.TestCase;
4
5 /**
6  *
7  * @author Klaas Waslander
8  */

9 public class CvsSystemImplTest extends TestCase {
10
11     public void testCountVersionChars() {
12         assertEquals(1, CvsSystemImpl.countVersionChars('-', "modulename_1-2"));
13         assertEquals(2, CvsSystemImpl.countVersionChars('-', "modulename_1-2-3"));
14     }
15
16 }
17
Popular Tags