Mercurial > jhg
diff test/com/tmate/hgkit/OutputParser.java @ 61:fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 18 Jan 2011 18:32:49 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/com/tmate/hgkit/OutputParser.java Tue Jan 18 18:32:49 2011 +0100 @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2011 Artem Tikhomirov + */ +package com.tmate.hgkit; + +/** + * + * @author artem + */ +public interface OutputParser { + + public void parse(CharSequence seq); +}