public IEnumerator HideDetail_WithDescriptionDataAllLocationsSizes_DoesNotThrowException(
            [ValueSource(typeof(ValueSourceCommon), "AllViewLocations")]
            CardinalDirections location,
            [ValueSource(typeof(ValueSourceCommon), "AllViewSizes")]
            ViewSizes size
            )
        {
//  Set Up
            SetUpCommon.CreateTestCamera();
            SetUpCommon.CreateTestNameCanvas(
                TestContext.CurrentContext.Test.Name
                );

            Subject subjectUnderTest = new Subject(
                SetUpCommon.GetUICanvas()
                );

            subjectUnderTest.TryAddData(
                ValueSourceCommon.GetMockDescriptionData()
                );

            subjectUnderTest.ShowDetail(location, size);

// Assert
            yield return(new WaitForSeconds(VisualTimer * .5f));

            Assert.DoesNotThrow(() => {
                subjectUnderTest.HideDetail();
            });

            yield return(new WaitForSeconds(VisualTimer * .5f));

// Tear Down
            TearDownCommon.DestroyAllGameObjects();
        }
        public IEnumerator Refresh_DescriptionPortraitArgsAllLocationsSizes_DoesNotThrowException(
            [ValueSource(typeof(ValueSourceCommon), "AllViewLocations")]
            CardinalDirections location,
            [ValueSource(typeof(ValueSourceCommon), "AllViewSizes")]
            ViewSizes size
            )
        {
// Set Up
            SetUpCommon.CreateTestCamera();
            SetUpCommon.CreateTestNameCanvas(TestContext.CurrentContext.Test.Name);

            SubjectDetailView detailView =
                SubjectDetailView.GetView(
                    SetUpCommon.GetUICanvas(),
                    size,
                    location
                    );

            IPortraitData    pData = ValueSourceCommon.GetMockPortraitData();
            IDescriptionData dData = ValueSourceCommon.GetMockDescriptionData();

// Assert
            Assert.DoesNotThrow(() => {
                detailView.Refresh(null, pData, dData);
            });

            yield return(new WaitForSeconds(VisualTimer));

// Tear Down
            TearDownCommon.DestroyAllGameObjects();
        }