Skip to content

Commit b7e5d89

Browse files
committed
Fix hover tests to actually run and include correct content
1 parent 115e4a1 commit b7e5d89

File tree

2 files changed

+35
-12
lines changed

2 files changed

+35
-12
lines changed
Lines changed: 35 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,39 @@
11
using System;
22
namespace Test
33
{
4-
class testissue
5-
{
6-
///<summary>Checks if object is tagged with the tag.</summary>
7-
/// <param name="gameObject">The game object.</param>
8-
/// <param name="tagName">Name of the tag.</param>
9-
/// <returns>Returns <c>true</c> if object is tagged with tag.</returns>
10-
11-
public static bool Compare(int gameObject,string tagName)
12-
{
13-
return true;
14-
}
15-
}
4+
class testissue
5+
{
6+
/// <summary>
7+
/// A cref <see cref="testissue"/>
8+
/// <br/>
9+
/// <strong>strong text</strong>
10+
/// <br/>
11+
/// <em>italic text</em>
12+
/// <br/>
13+
/// <u>underline text</u>
14+
/// <para>
15+
/// <list type='bullet'>
16+
/// <item>
17+
/// <description>Item 1.</description>
18+
/// </item>
19+
/// <item>
20+
/// <description>Item 2.</description>
21+
/// </item>
22+
/// </list>
23+
/// <a href = "https://google.com" > link text</a>
24+
/// </para>
25+
/// </summary>
26+
/// <exception cref='System.NullReferenceException'>
27+
/// Oh no!
28+
/// </exception>
29+
/// <param name='i'>an int</param>
30+
/// <returns>a string</returns>
31+
/// <remarks>
32+
/// Remarks are cool too.
33+
/// </remarks>
34+
public static bool Compare(int gameObject,string tagName)
35+
{
36+
return true;
37+
}
38+
}
1639
}

0 commit comments

Comments
 (0)