Skip to content

Commit

Permalink
[Update] links and emails
Browse files Browse the repository at this point in the history
  • Loading branch information
samatrhea committed Apr 27, 2024
1 parent 90c62e2 commit ab79e10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at s.gerene@rheagroup.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at s.gerene@stariongroup.eu. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://raw.githubusercontent.com/STARIONGROUP/reqifsharp/master/reqifsharp-logo.png" width="350">

ReqIFSharp is a C# library for reading and writing ReqIF documents. ReqIFSharp is used in Starion products such as [CDP4-COMET](https://www.rheagroup.com/services-solutions/system-engineering/concurrent-design/) and a web based ReqIF [Viewer](https://viewer.reqifsharp.org). Read more about it here: https://www.reqifsharp.org
ReqIFSharp is a C# library for reading and writing ReqIF documents. ReqIFSharp is used in Starion products such as [CDP4-COMET](https://www.stariongroup.eu/services-solutions/system-engineering/concurrent-design/cdp4-comet/) and a web based ReqIF [Viewer](https://viewer.reqifsharp.org). Read more about it here: https://www.reqifsharp.org

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_reqifsharp&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=STARIONGROUP_reqifsharp)
[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=STARIONGROUP_reqifsharp&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=STARIONGROUP_reqifsharp)
Expand Down
6 changes: 3 additions & 3 deletions ReqIFSharp.Tests/ReqIfFactoryTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void Verify_That_Unkown_Element_AttributeDefinition_Throws_ArgumentExcept
{
var spectType = new SpecObjectType();

string unknownName = "RHEA";
string unknownName = "Starion";
Assert.That(ReqIfFactory.AttributeDefinitionConstruct(unknownName, spectType, this.loggerFactory), Is.Null);
}

Expand All @@ -85,7 +85,7 @@ public void Verify_That_Unknown_Element_DataTypeDefinition_Throws_ArgumentExcept
{
var reqIfContent = new ReqIFContent();

string unknownName = "RHEA";
string unknownName = "Starion";
Assert.That(() => ReqIfFactory.DatatypeDefinitionConstruct(unknownName, reqIfContent, this.loggerFactory), Throws.Exception.TypeOf<ArgumentException>());
}

Expand All @@ -94,7 +94,7 @@ public void Verify_that_unknown_SpecTypeName_throws_exception()
{
var reqIfContent = new ReqIFContent();

string unknownName = "RHEA";
string unknownName = "Starion";
Assert.That(() => ReqIfFactory.SpecTypeConstruct(unknownName, reqIfContent, this.loggerFactory), Throws.Exception.TypeOf<ArgumentException>());
}

Expand Down

0 comments on commit ab79e10

Please sign in to comment.