DependencyResolutionTest.cs 323 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using NUnit.Framework;
  5. namespace ProtoGen {
  6. /// <summary>
  7. /// Tests for the dependency resolution in Generator.
  8. /// </summary>
  9. [TestFixture]
  10. public class DependencyResolutionTest {
  11. [Test]
  12. public void TwoDistinctFiles() {
  13. }
  14. }
  15. }