comparison 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
comparison
equal deleted inserted replaced
60:613c936d74e4 61:fac8e7fcc8b0
1 /*
2 * Copyright (c) 2011 Artem Tikhomirov
3 */
4 package com.tmate.hgkit;
5
6 /**
7 *
8 * @author artem
9 */
10 public interface OutputParser {
11
12 public void parse(CharSequence seq);
13 }