|
3 | 3 | #nullable disable |
4 | 4 |
|
5 | 5 | using System.Collections.Generic; |
6 | | -using System.Linq; |
7 | 6 |
|
8 | 7 | namespace Encode._Array |
9 | 8 | { |
10 | | - /// <summary> A factory class for creating instances of the models for mocking. </summary> |
11 | 9 | public static partial class EncodeArrayModelFactory |
12 | 10 | { |
13 | | - /// <summary> The CommaDelimitedArrayProperty. </summary> |
14 | | - /// <param name="value"></param> |
15 | | - /// <returns> A new <see cref="_Array.CommaDelimitedArrayProperty"/> instance for mocking. </returns> |
16 | | - public static CommaDelimitedArrayProperty CommaDelimitedArrayProperty(IEnumerable<string> value = default) |
17 | | - { |
18 | | - value ??= new ChangeTrackingList<string>(); |
| 11 | + public static CommaDelimitedArrayProperty CommaDelimitedArrayProperty(IEnumerable<string> value = default) => throw null; |
19 | 12 |
|
20 | | - return new CommaDelimitedArrayProperty(value.ToList(), additionalBinaryDataProperties: null); |
21 | | - } |
| 13 | + public static SpaceDelimitedArrayProperty SpaceDelimitedArrayProperty(IEnumerable<string> value = default) => throw null; |
22 | 14 |
|
23 | | - /// <summary> The SpaceDelimitedArrayProperty. </summary> |
24 | | - /// <param name="value"></param> |
25 | | - /// <returns> A new <see cref="_Array.SpaceDelimitedArrayProperty"/> instance for mocking. </returns> |
26 | | - public static SpaceDelimitedArrayProperty SpaceDelimitedArrayProperty(IEnumerable<string> value = default) |
27 | | - { |
28 | | - value ??= new ChangeTrackingList<string>(); |
| 15 | + public static PipeDelimitedArrayProperty PipeDelimitedArrayProperty(IEnumerable<string> value = default) => throw null; |
29 | 16 |
|
30 | | - return new SpaceDelimitedArrayProperty(value.ToList(), additionalBinaryDataProperties: null); |
31 | | - } |
32 | | - |
33 | | - /// <summary> The PipeDelimitedArrayProperty. </summary> |
34 | | - /// <param name="value"></param> |
35 | | - /// <returns> A new <see cref="_Array.PipeDelimitedArrayProperty"/> instance for mocking. </returns> |
36 | | - public static PipeDelimitedArrayProperty PipeDelimitedArrayProperty(IEnumerable<string> value = default) |
37 | | - { |
38 | | - value ??= new ChangeTrackingList<string>(); |
39 | | - |
40 | | - return new PipeDelimitedArrayProperty(value.ToList(), additionalBinaryDataProperties: null); |
41 | | - } |
42 | | - |
43 | | - /// <summary> The NewlineDelimitedArrayProperty. </summary> |
44 | | - /// <param name="value"></param> |
45 | | - /// <returns> A new <see cref="_Array.NewlineDelimitedArrayProperty"/> instance for mocking. </returns> |
46 | | - public static NewlineDelimitedArrayProperty NewlineDelimitedArrayProperty(IEnumerable<string> value = default) |
47 | | - { |
48 | | - value ??= new ChangeTrackingList<string>(); |
49 | | - |
50 | | - return new NewlineDelimitedArrayProperty(value.ToList(), additionalBinaryDataProperties: null); |
51 | | - } |
| 17 | + public static NewlineDelimitedArrayProperty NewlineDelimitedArrayProperty(IEnumerable<string> value = default) => throw null; |
52 | 18 | } |
53 | 19 | } |
0 commit comments