public void Constructor_TestMethod()
        {
            IdentifierGroupMembershipSnapshotResponse testResp = null;

            testResp = IdentifierGroupMembershipSnapshotResponse.Create(new DateTime(1017, 12, 19),
                                                                        new List <string>()
            {
                "abc", "def"
            });

            Assert.IsNotNull(testResp);
        }
        public void AsOfDate_Empty_TestMethod()
        {
            DateTime?expected = null;
            DateTime?actual   = null;

            IdentifierGroupMembershipSnapshotResponse testResp = IdentifierGroupMembershipSnapshotResponse.Create(expected,
                                                                                                                  new List <string>()
            {
                "abc", "def"
            });

            actual = testResp.AsOfDate;

            Assert.AreNotEqual(expected, actual);
        }