New regression test to make sure the fixed bug doesn't get back

This commit is contained in:
Andrea Aime 2006-02-23 19:46:45 +00:00
parent fd167e489e
commit f7f0725667
2 changed files with 28 additions and 0 deletions

13
testdata/dot-ref/TestHideOp.dot vendored Normal file
View File

@ -0,0 +1,13 @@
#!/usr/local/bin/dot
#
# Class diagram
# Generated by UmlGraph version 4.1 (http://www.spinellis.gr/sw/umlgraph)
#
digraph G {
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
node [fontname="Helvetica",fontsize=10,shape=plaintext];
// test.TestHideOp
c118 [label=<<table border="0" cellborder="1" cellspacing="0" cellpadding="2" port="p"><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td> TestHideOp </td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="left"> </td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="left"> </td></tr></table></td></tr></table>>, fontname="Helvetica", fontcolor="black", fontsize=10.0];
}

15
testdata/java/TestHideOp.java vendored Normal file
View File

@ -0,0 +1,15 @@
// $Id$
package test;
/**
* @hidden
* @opt operations
*/
class UMLOptions{}
public class TestHideOp {
/**
* @hidden
*/
public void hiddenOperation();
}