Skip to content

Commit

Permalink
Adding test cases for records (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
belav authored Jun 16, 2021
1 parent ff36368 commit d8956d7
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,21 @@ record LongerRecordNameWhatHappens_________________________________________(stri
: R4<string>(x) { }

record GenericRecord<T>(T Result);

public record LotsOfParametersWithBase(
string longNameParameter,
string areTheyCalledParametersWithRecords,
string theyLookLikeParameters
) : BaseRecord(longNameParameter);

public record LotsOfParametersWithBaseWithLots(
string longNameParameter,
string areTheyCalledParametersWithRecords,
string theyLookLikeParameters
)
: BaseRecord(
longNameParameter,
areTheyCalledParametersWithRecords,
theyLookLikeParameters,
"someExtraValueToMakeThisReallyLong"
);

0 comments on commit d8956d7

Please sign in to comment.