# Passing explicit Targets
* `target` treated as a string or serialized.
* [Converters](/docs/converter.md) are not executed.
* Explicit `Target`s can be passed in.
## NUnit
```cs
[Test]
public Task WithTargets() =>
Verify(
new
{
Property = "Value"
},
[
new Target(
extension: "txt",
data: "Raw target value",
name: "targetName")
]);
```
snippet source | anchor
## Xunit
```cs
[Fact]
public Task WithTargets() =>
Verify(
new
{
Property = "Value"
},
[
new(
extension: "txt",
data: "Raw target value",
name: "targetName")
]);
```
snippet source | anchor
## Fixie
```cs
public Task WithTargets() =>
Verify(
new
{
Property = "Value"
},
[
new(
extension: "txt",
data: "Raw target value",
name: "targetName")
]);
```
snippet source | anchor
## MsTest
```cs
[TestMethod]
public Task WithTargets() =>
Verify(
target: new
{
Property = "Value"
},
rawTargets:
[
new(
extension: "txt",
data: "Raw target value",
name: "targetName")
]);
```
snippet source | anchor
## TUnit
```cs
[Test]
public Task WithTargets() =>
Verify(
new
{
Property = "Value"
},
[
new Target(
extension: "txt",
data: "Raw target value",
name: "targetName")
]);
```
snippet source | anchor
## Result
```txt
{
Property: Value
}
```
snippet source | anchor
```txt
Raw target value
```
snippet source | anchor