Skip to content

Commit ae40b47

Browse files
author
fabien.menager
committed
Factorize test sources
1 parent 5dc0521 commit ae40b47

5 files changed

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+

2+
namespace Foo {
3+
class Input { }
4+
class Output {
5+
public Output() { }
6+
[Projectable]
7+
public Output(Input i)
8+
{
9+
}
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
namespace Foo {
3+
class Input { public int Value { get; set; } }
4+
class Output {
5+
public int Value { get; set; }
6+
public Output(string name) { }
7+
[Projectable]
8+
public Output(Input i)
9+
{
10+
Value = i.Value;
11+
}
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+

2+
namespace Foo {
3+
class Input { }
4+
class Output {
5+
public Output()
6+
{
7+
}
8+
9+
[Projectable]
10+
public Output(Input i)
11+
{
12+
}
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+

2+
namespace Foo {
3+
class Input { }
4+
class Output {
5+
public Output() { }
6+
[Projectable]
7+
public Output(Input i)
8+
{
9+
}
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+

2+
namespace Foo {
3+
class Input { public int Value { get; set; } }
4+
class Output {
5+
public int Value { get; set; }
6+
public Output(string name) { }
7+
[Projectable]
8+
public Output(Input i)
9+
{
10+
Value = i.Value;
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)