(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func TestIsDotnet(t *testing.T) { |
| 94 | pe, err := ParseFile("./_fixtures/mscorlib.dll", WithCLR()) |
| 95 | require.NoError(t, err) |
| 96 | require.True(t, pe.IsDotnet) |
| 97 | } |
| 98 | |
| 99 | func TestIsDriver(t *testing.T) { |
| 100 | pe, err := ParseFile("./_fixtures/054299e09cea38df2b84e6b29348b418.bin", WithSections(), WithSymbols()) |