This file is indexed.

/usr/share/doc/nunit/examples/Extensibility/Core/Minimal/ReadMe.txt is in libnunit-doc 2.6.3+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Minimal Addin Example


MinimalAddin Class

This class represents the addin. It is marked by the NUnitAddinAttribute
and implements the required IAddin interface. When called by NUnit to
install itself, it simply returns false.

Note on Building this Extension

If you use the Visual Studio solution, the NUnit references in both
included projects must be changed so that they refer to the copy of 
NUnit in which you want to install the extension. The post-build step 
for the SampleSuiteExtension project must be changed to copy the 
extension into the addins directory for your NUnit install.

NOTE:

The references to nunit.core and nunit.common in the 
SampleSuiteExtension project have their Copy Local property set to 
false, rather than the Visual Studio default of true. In developing
extensions, it is essential there be no extra copies of these assemblies
be created. Once the extension is complete, those who install it in
binary form will not need to deal with this issue.