Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Final coverage report and last controller test #14

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions Tests/ReactantProductListControllerTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
using Chemistry_Cafe_API.Controllers;
using Chemistry_Cafe_API.Models;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySqlConnector;

namespace Chemistry_Cafe_API.Tests
{
[TestClass]
public class ReactantProductListControllerTests
{
ReactantProductListController controller = new ReactantProductListController(DBConnection.DataSource);

[TestMethod]
public async Task Get_retrieves_ReactantProductList()
{
var result = await controller.Get() as List<ReactantProductList>;

Assert.IsNotNull(result);
}

[TestMethod]
public async Task Creates_ReactantProductList()
{
var reactantProductList = new ReactantProductList
{
reactant_product_uuid = new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"),
reaction_uuid = new Guid("03ebb1a8-8af5-4523-a3aa-934e01d466e5"),
species_uuid = new Guid("37c947f1-f394-40fa-a8f3-64b8f08c10c9"),
quantity = 1
};

await controller.Create(reactantProductList);

var getResult = await controller.Get(new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"));

Assert.AreEqual(new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"), getResult.reactant_product_uuid);
}

[TestMethod]
public async Task Updates_ReactantProductList()
{
var reactantProductList = new ReactantProductList
{
reactant_product_uuid = new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"),
reaction_uuid = new Guid("03ebb1a8-8af5-4523-a3aa-934e01d466e5"),
species_uuid = new Guid("37c947f1-f394-40fa-a8f3-64b8f08c10c9"),
quantity = 1
};

await controller.Create(reactantProductList);

var getResult = await controller.Get(new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"));

getResult.quantity = 40;

await controller.Put(getResult);

var getEditedResult = await controller.Get(new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"));

var delete = new DeleteReactantProductList
{
reactant_product_uuid = new Guid("acc17b0a-1ddc-4ef9-a709-86cc4900dbe9"),
species_uuid = new Guid("37c947f1-f394-40fa-a8f3-64b8f08c10c9")
};

await controller.Delete(delete);

Assert.IsNotNull(getEditedResult);
}
}
}
2 changes: 1 addition & 1 deletion coveragereport/chemistry_cafe_api.dll_DBConnection.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiTestsDBConnectioncs">C:\Users\E
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:46 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ <h1><a href="index.html" class="back">&lt;</a> Summary</h1>
<div class="card">
<div class="card-header">Line coverage</div>
<div class="card-body">
<div class="large cardpercentagebar cardpercentagebar100">0%</div>
<div class="large cardpercentagebar cardpercentagebar0">100%</div>
<div class="table">
<table>
<tr>
<th>Covered lines:</th>
<td class="limit-width right" title="0">0</td>
<td class="limit-width right" title="2">2</td>
</tr>
<tr>
<th>Uncovered lines:</th>
<td class="limit-width right" title="2">2</td>
<td class="limit-width right" title="0">0</td>
</tr>
<tr>
<th>Coverable lines:</th>
Expand All @@ -57,7 +57,7 @@ <h1><a href="index.html" class="back">&lt;</a> Summary</h1>
</tr>
<tr>
<th>Line coverage:</th>
<td class="limit-width right" title="0 of 2">0%</td>
<td class="limit-width right" title="2 of 2">100%</td>
</tr>
</table>
</div>
Expand Down Expand Up @@ -105,21 +105,21 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiModelsDeleteReactantProductList
<tr class="" title="Not coverable" data-coverage="{'AllTestMethods': {'VC': '', 'LVS': 'gray'}}"><td class="gray">&nbsp;</td><td class="leftmargin rightmargin right"></td><td class="rightmargin right"><a id="file0_line2"></a><code>2</code></td><td></td><td class="lightgray"><code>{</code></td></tr>
<tr class="" title="Not coverable" data-coverage="{'AllTestMethods': {'VC': '', 'LVS': 'gray'}}"><td class="gray">&nbsp;</td><td class="leftmargin rightmargin right"></td><td class="rightmargin right"><a id="file0_line3"></a><code>3</code></td><td></td><td class="lightgray"><code>&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;class&nbsp;DeleteReactantProductList</code></td></tr>
<tr class="" title="Not coverable" data-coverage="{'AllTestMethods': {'VC': '', 'LVS': 'gray'}}"><td class="gray">&nbsp;</td><td class="leftmargin rightmargin right"></td><td class="rightmargin right"><a id="file0_line4"></a><code>4</code></td><td></td><td class="lightgray"><code>&nbsp;&nbsp;&nbsp;&nbsp;{</code></td></tr>
<tr class="coverableline" title="Not covered (0 visits)" data-coverage="{'AllTestMethods': {'VC': '0', 'LVS': 'red'}}"><td class="red">&nbsp;</td><td class="leftmargin rightmargin right">0</td><td class="rightmargin right"><a id="file0_line5"></a><code>5</code></td><td></td><td class="lightred"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;Guid&nbsp;reactant_product_uuid&nbsp;{&nbsp;get;&nbsp;set;&nbsp;}</code></td></tr>
<tr class="coverableline" title="Not covered (0 visits)" data-coverage="{'AllTestMethods': {'VC': '0', 'LVS': 'red'}}"><td class="red">&nbsp;</td><td class="leftmargin rightmargin right">0</td><td class="rightmargin right"><a id="file0_line6"></a><code>6</code></td><td></td><td class="lightred"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;Guid&nbsp;species_uuid&nbsp;{&nbsp;&nbsp;get;&nbsp;set;&nbsp;}</code></td></tr>
<tr class="coverableline" title="Covered (1 visits)" data-coverage="{'AllTestMethods': {'VC': '1', 'LVS': 'green'}}"><td class="green">&nbsp;</td><td class="leftmargin rightmargin right">1</td><td class="rightmargin right"><a id="file0_line5"></a><code>5</code></td><td></td><td class="lightgreen"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;Guid&nbsp;reactant_product_uuid&nbsp;{&nbsp;get;&nbsp;set;&nbsp;}</code></td></tr>
<tr class="coverableline" title="Covered (1 visits)" data-coverage="{'AllTestMethods': {'VC': '1', 'LVS': 'green'}}"><td class="green">&nbsp;</td><td class="leftmargin rightmargin right">1</td><td class="rightmargin right"><a id="file0_line6"></a><code>6</code></td><td></td><td class="lightgreen"><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;Guid&nbsp;species_uuid&nbsp;{&nbsp;&nbsp;get;&nbsp;set;&nbsp;}</code></td></tr>
<tr class="" title="Not coverable" data-coverage="{'AllTestMethods': {'VC': '', 'LVS': 'gray'}}"><td class="gray">&nbsp;</td><td class="leftmargin rightmargin right"></td><td class="rightmargin right"><a id="file0_line7"></a><code>7</code></td><td></td><td class="lightgray"><code>&nbsp;&nbsp;&nbsp;&nbsp;}</code></td></tr>
<tr class="" title="Not coverable" data-coverage="{'AllTestMethods': {'VC': '', 'LVS': 'gray'}}"><td class="gray">&nbsp;</td><td class="leftmargin rightmargin right"></td><td class="rightmargin right"><a id="file0_line8"></a><code>8</code></td><td></td><td class="lightgray"><code>}</code></td></tr>
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
<a href="#file0_line5" class="navigatetohash percentagebar percentagebar0" title="Line coverage: 0% - reactant_product_uuid()"><i class="icon-wrench"></i>reactant_product_uuid()</a><br />
<a href="#file0_line5" class="navigatetohash percentagebar percentagebar0" title="Line coverage: 0% - reactant_product_uuid(System.Guid)"><i class="icon-wrench"></i>reactant_product_uuid(System.Guid)</a><br />
<a href="#file0_line6" class="navigatetohash percentagebar percentagebar0" title="Line coverage: 0% - species_uuid()"><i class="icon-wrench"></i>species_uuid()</a><br />
<a href="#file0_line6" class="navigatetohash percentagebar percentagebar0" title="Line coverage: 0% - species_uuid(System.Guid)"><i class="icon-wrench"></i>species_uuid(System.Guid)</a><br />
<a href="#file0_line5" class="navigatetohash percentagebar percentagebar100" title="Line coverage: 100% - reactant_product_uuid()"><i class="icon-wrench"></i>reactant_product_uuid()</a><br />
<a href="#file0_line5" class="navigatetohash percentagebar percentagebar100" title="Line coverage: 100% - reactant_product_uuid(System.Guid)"><i class="icon-wrench"></i>reactant_product_uuid(System.Guid)</a><br />
<a href="#file0_line6" class="navigatetohash percentagebar percentagebar100" title="Line coverage: 100% - species_uuid()"><i class="icon-wrench"></i>species_uuid()</a><br />
<a href="#file0_line6" class="navigatetohash percentagebar percentagebar100" title="Line coverage: 100% - species_uuid(System.Guid)"><i class="icon-wrench"></i>species_uuid(System.Guid)</a><br />
<br/></div>
</div></div>
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion coveragereport/chemistry_cafe_api.dll_Family.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiModelsFamilycs">C:\Users\Evan\D
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiControllersFamilyControllercs">
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiTestsFamilyControllerTestscs">C
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:46 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
2 changes: 1 addition & 1 deletion coveragereport/chemistry_cafe_api.dll_FamilyService.html
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiServicesFamilyServicecs">C:\Use
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiModelsFamilyTagMechListcs">C:\U
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiControllersFamilyTagMechListCon
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiTestsFamilyTagMechListControlle
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:46 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiServicesFamilyTagMechListServic
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiModelsFamilyTagMechListVersionc
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiControllersFamilyTagMechListVer
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiTestsFamilyTagMechListVersionCo
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:46 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiServicesFamilyTagMechListVersio
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiControllersOpenAtmosControllerc
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiTestsOpenAtmosControllerTestscs
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:46 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ <h2 id="CUsersEvanDocumentsGitHubchemistrycafeapiServicesOpenAtmosServicecs">C:\
</tbody>
</table>
</div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/24/2024 - 8:49:56 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="footer">Generated by: ReportGenerator 5.2.5.0<br />4/25/2024 - 12:11:45 PM<br /><a href="https://github.com/danielpalme/ReportGenerator">GitHub</a> | <a href="https://reportgenerator.io">reportgenerator.io</a></div></div>
<div class="containerright">
<div class="containerrightfixed">
<h1>Methods/Properties</h1>
Expand Down
Loading
Loading