< Summary

Class:MUNity.Schema.Account.UpdateProfileRequest
Assembly:MUNity.Schema
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Account\UpdateProfileRequest.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:31
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:11
Method coverage:0% (0 of 11)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_UserName()100%10%
get_UpdatedBirthdayDay()100%10%
get_UpdatedBirthdayMonth()100%10%
get_UpdatedBirthdayYear()100%10%
get_UpdatedCountry()100%10%
get_UpdatedZipCode()100%10%
get_UpdatedCity()100%10%
get_UpdatedStreet()100%10%
get_UpdatedHouseNumber()100%10%
get_UpdateForename()100%10%
get_UpdateLastname()100%10%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNitySchema\Account\UpdateProfileRequest.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4
 5namespace MUNity.Schema.Account
 6{
 7    public class UpdateProfileRequest
 8    {
 09        public string UserName { get; set; }
 10
 011        public int UpdatedBirthdayDay { get; set; }
 12
 013        public int UpdatedBirthdayMonth { get; set; }
 14
 015        public int UpdatedBirthdayYear { get; set; }
 16
 017        public string UpdatedCountry { get; set; }
 18
 019        public string UpdatedZipCode { get; set; }
 20
 021        public string UpdatedCity { get; set; }
 22
 023        public string UpdatedStreet { get; set; }
 24
 025        public string UpdatedHouseNumber { get; set; }
 26
 027        public string UpdateForename { get; set; }
 28
 029        public string UpdateLastname { get; set; }
 30    }
 31}