AdjustTest.Pcl.TestActivityHandler.ReadFiles C# (CSharp) Method

ReadFiles() private method

private ReadFiles ( string readActivityState, string readAttribution ) : void
readActivityState string
readAttribution string
return void
        private void ReadFiles(string readActivityState, string readAttribution)
        {
            if (readAttribution == null)
            {
                //  test that the attribution file did not exist in the first run of the application
                Assert.Verbose("Attribution file not found");
            }
            else
            {
                Assert.Debug("Read Attribution: " + readAttribution);
            }

            if (readActivityState == null)
            {
                //  test that the activity state file did not exist in the first run of the application
                Assert.Verbose("Activity state file not found");
            }
            else
            {
                Assert.Debug("Read Activity state: " + readActivityState);
            }
        }