CSLA.NET
6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Macros
Pages
PdbContentTests.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Collections.Generic;
3
using
System.IO;
4
using
System.Linq;
5
using
System.Text;
6
using
System.Threading.Tasks;
7
#if MSTEST
8
using
Microsoft
.VisualStudio.TestTools.UnitTesting;
9
#endif
10
using
UnitDriven
;
11
12
namespace
Csla.Test.SourceLink
13
{
14
[TestClass]
15
public
class
PdbContentTests
:
TestBase
16
{
17
private
bool
BufferContainsData(
byte
[] buffer,
byte
[] data)
18
{
19
for
(
int
i = 0; i <= (buffer.Length - data.Length); i++)
20
{
21
if
(buffer[i] == data[0])
22
{
23
int
j;
24
for
(j = 1; j < data.Length && buffer[i + j] == data[j]; j++) ;
25
if
(j == data.Length)
26
{
27
return
true
;
28
}
29
}
30
}
31
return
false
;
32
}
33
39
[TestMethod]
40
[Ignore]
41
public
void
SearchPdbForString
()
42
{
43
byte
[] searchBytes = Encoding.UTF8.GetBytes(
"https://raw.githubusercontent.com"
);
44
45
var symbolFiles = Directory.GetFiles(
"..\\..\\..\\..\\Bin\\Release"
,
"*.pdb"
, SearchOption.AllDirectories);
46
foreach
(var path
in
symbolFiles)
47
{
48
byte
[] fileData = File.ReadAllBytes(path);
49
Assert.IsTrue(BufferContainsData(fileData, searchBytes), $
"{path} doesn't contain Source Link information!"
);
50
}
51
}
52
}
53
}
Csla.Test.SourceLink.PdbContentTests
Definition:
PdbContentTests.cs:16
Csla.Test.SourceLink.PdbContentTests.SearchPdbForString
void SearchPdbForString()
Search all symbol files in the release folder for the string "https://raw.githubusercontent....
Definition:
PdbContentTests.cs:41
UnitDriven.TestBase
Definition:
TestBase.cs:10
Csla.Test.SourceLink
Definition:
PdbContentTests.cs:13
Microsoft
Definition:
ServiceCollectionExtensions.cs:17
UnitDriven
Definition:
Asserter.cs:13
Generated by
1.9.2