示例#1
0
        /// <summary>
        /// Resolves the snapshot name for the running unit test.
        /// The default generated snapshot name can be overwritten
        /// by the given snapshot name.
        /// </summary>
        /// <param name="snapshotName">
        /// The snapshot name given by the user. This snapshot name will overwrite
        /// the automatically generated snapshot name.
        /// </param>
        /// <returns>The full name of a snapshot.</returns>
        public static SnapshotFullName FullName(string snapshotName)
        {
            SnapshotFullName fullName = _snapshotName.Value;

            if (fullName is null)
            {
                fullName            = Snapshooter.ResolveSnapshotFullName(snapshotName);
                _snapshotName.Value = fullName;
            }

            return(fullName);
        }
示例#2
0
        /// <summary>
        /// Resolves the snapshot name for the running unit test.
        /// The default generated snapshot name can be extended by
        /// the snapshot name extensions.
        /// </summary>
        /// <param name="snapshotNameExtension">
        /// The snapshot name extension will extend the snapshot name with
        /// this given extensions. It can be used to make a snapshot name even more
        /// specific.
        /// Example:
        /// Snapshot name = 'NumberAdditionTest'
        /// Snapshot name extension = '5', '6', 'Result', '11'
        /// Result: 'NumberAdditionTest_5_6_Result_11'
        /// </param>
        /// <returns>The full name of a snapshot.</returns>
        public static SnapshotFullName FullName(
            SnapshotNameExtension snapshotNameExtension)
        {
            SnapshotFullName fullName = _snapshotName.Value;

            if (fullName is null)
            {
                fullName = Snapshooter.ResolveSnapshotFullName(
                    snapshotNameExtension: snapshotNameExtension);
                _snapshotName.Value = fullName;
            }

            return(fullName);
        }
示例#3
0
 /// <summary>
 /// Resolves the snapshot name for the running unit test.
 /// The default generated snapshot name can either be overwritten
 /// with a given snapshot name, or can be extended by the snapshot name extensions,
 /// or both.
 /// </summary>
 /// <param name="snapshotName">
 /// The snapshot name given by the user, this snapshot name will overwrite
 /// the automatically generated snapshot name.
 /// </param>
 /// <param name="snapshotNameExtension">
 /// The snapshot name extension will extend the snapshot name with
 /// this given extensions. It can be used to make a snapshot name even more
 /// specific.
 /// Example:
 /// Snapshot name = 'NumberAdditionTest'
 /// Snapshot name extension = '5', '6', 'Result', '11'
 /// Result: 'NumberAdditionTest_5_6_Result_11'
 /// </param>
 /// <returns>The full name of a snapshot.</returns>
 public static SnapshotFullName FullName(
     string snapshotName, SnapshotNameExtension snapshotNameExtension)
 {
     return(Snapshooter.ResolveSnapshotFullName(snapshotName, snapshotNameExtension));
 }
示例#4
0
 /// <summary>
 /// Resolves the snapshot name for the running unit test.
 /// The default generated snapshot name can be overwritten
 /// by the given snapshot name.
 /// </summary>
 /// <param name="snapshotName">
 /// The snapshot name given by the user. This snapshot name will overwrite
 /// the automatically generated snapshot name.
 /// </param>
 /// <returns>The full name of a snapshot.</returns>
 public static SnapshotFullName FullName(string snapshotName)
 {
     return(Snapshooter.ResolveSnapshotFullName(snapshotName));
 }
示例#5
0
 /// <summary>
 /// Resolves automatically the snapshot name for the running unit test.
 /// </summary>
 /// <returns>The full name of a snapshot.</returns>
 public static SnapshotFullName FullName()
 {
     return(Snapshooter.ResolveSnapshotFullName());
 }