source: trunk/quest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEvent.java @ 559

Last change on this file since 559 was 559, checked in by sherbold, 12 years ago
  • adapted to quest coding style
  • Property svn:mime-type set to text/plain
File size: 449 bytes
Line 
1
2package de.ugoe.cs.quest.assertions;
3
4import de.ugoe.cs.quest.eventcore.IEventType;
5
6/**
7 *
8 * <p>
9 * TODO comment
10 * </p>
11 *
12 * @version $Revision: $ $Date: Aug 16, 2012$
13 * @author 2012, last modified by $Author: sherbold$
14 */
15public class FileEqualsAssertEvent implements IEventType {
16
17    /**  */
18    private static final long serialVersionUID = 1L;
19
20    @Override
21    public String getName() {
22        return "FileEqualsAssertion";
23    }
24
25}
Note: See TracBrowser for help on using the repository browser.